* [PATCH i-g-t 0/2] Add tests to query firmware version
@ 2024-02-07 20:46 Francois Dugast
2024-02-07 20:46 ` [PATCH i-g-t 1/2] drm-uapi/xe: Add test to query GuC firmware submission version Francois Dugast
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Francois Dugast @ 2024-02-07 20:46 UTC (permalink / raw)
To: igt-dev; +Cc: Francois Dugast
This tests the kernel series https://patchwork.freedesktop.org/series/129640/.
Francois Dugast (2):
drm-uapi/xe: Add test to query GuC firmware submission version
drm-uapi/xe: Add test to query HuC firmware version
include/drm-uapi/xe_drm.h | 32 +++++++++
tests/intel/xe_query.c | 143 ++++++++++++++++++++++++++++++++++++++
2 files changed, 175 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH i-g-t 1/2] drm-uapi/xe: Add test to query GuC firmware submission version 2024-02-07 20:46 [PATCH i-g-t 0/2] Add tests to query firmware version Francois Dugast @ 2024-02-07 20:46 ` Francois Dugast 2024-02-07 20:46 ` [PATCH i-g-t 2/2] drm-uapi/xe: Add test to query HuC firmware version Francois Dugast ` (3 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Francois Dugast @ 2024-02-07 20:46 UTC (permalink / raw) To: igt-dev Cc: Francois Dugast, John Harrison, José Roberto de Souza, Lucas De Marchi This aligns with kernel commit ("drm/xe: Add uAPI to query GuC firmware submission version"). Cc: John Harrison <John.C.Harrison@Intel.com> Cc: José Roberto de Souza <jose.souza@intel.com> Cc: Lucas De Marchi <lucas.demarchi@intel.com> Signed-off-by: Francois Dugast <francois.dugast@intel.com> --- include/drm-uapi/xe_drm.h | 31 +++++++++++++ tests/intel/xe_query.c | 97 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 128 insertions(+) diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h index bacdca787..3bd795f27 100644 --- a/include/drm-uapi/xe_drm.h +++ b/include/drm-uapi/xe_drm.h @@ -574,6 +574,36 @@ struct drm_xe_query_engine_cycles { __u64 cpu_delta; }; +/** + * struct drm_xe_query_uc_fw_version - query a micro-controller firmware version + * + * Given a uc_type this will return the major, minor, patch and branch version + * of the micro-controller firmware. + */ +struct drm_xe_query_uc_fw_version { + /** @uc: The micro-controller type to query firmware version */ +#define XE_QUERY_UC_TYPE_GUC_SUBMISSION 0 + __u16 uc_type; + + /** @pad: MBZ */ + __u16 pad; + + /* @major_ver: major uc fw version */ + __u32 major_ver; + /* @minor_ver: minor uc fw version */ + __u32 minor_ver; + /* @patch_ver: patch uc fw version */ + __u32 patch_ver; + /* @branch_ver: branch uc fw version */ + __u32 branch_ver; + + /** @pad2: MBZ */ + __u32 pad2; + + /** @reserved: Reserved */ + __u64 reserved; +}; + /** * struct drm_xe_device_query - Input of &DRM_IOCTL_XE_DEVICE_QUERY - main * structure to query device information @@ -643,6 +673,7 @@ struct drm_xe_device_query { #define DRM_XE_DEVICE_QUERY_HWCONFIG 4 #define DRM_XE_DEVICE_QUERY_GT_TOPOLOGY 5 #define DRM_XE_DEVICE_QUERY_ENGINE_CYCLES 6 +#define DRM_XE_DEVICE_QUERY_UC_FW_VERSION 7 /** @query: The type of data to query */ __u32 query; diff --git a/tests/intel/xe_query.c b/tests/intel/xe_query.c index 9a6799c84..d51e73ea5 100644 --- a/tests/intel/xe_query.c +++ b/tests/intel/xe_query.c @@ -730,6 +730,101 @@ static void test_engine_cycles_invalid(int fd) query_engine_cycles(fd, &ts); } +/** + * SUBTEST: query-uc-fw-version-guc + * Test category: functionality test + * Description: Display the GuC firmware submission version + * + * SUBTEST: multigpu-query-uc-fw-version-guc + * Test category: functionality test + * Sub-category: MultiGPU + * Description: Display GuC firmware submission version for all Xe devices. + */ +static void +test_query_uc_fw_version_guc(int fd) +{ + struct drm_xe_query_uc_fw_version *uc_fw_version; + struct drm_xe_device_query query = { + .extensions = 0, + .query = DRM_XE_DEVICE_QUERY_UC_FW_VERSION, + .size = 0, + .data = 0, + }; + + igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0); + + uc_fw_version = malloc(query.size); + igt_assert(uc_fw_version); + + uc_fw_version->uc_type = XE_QUERY_UC_TYPE_GUC_SUBMISSION; + uc_fw_version->pad = 0; + uc_fw_version->pad2 = 0; + uc_fw_version->reserved = 0; + query.data = to_user_pointer(uc_fw_version); + + igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0); + igt_assert(uc_fw_version->major_ver > 0); + + igt_info("XE_QUERY_UC_TYPE_GUC_SUBMISSION %u.%u.%u.%u\n", + uc_fw_version->major_ver, + uc_fw_version->minor_ver, + uc_fw_version->patch_ver, + uc_fw_version->branch_ver); + + free(uc_fw_version); +} + +/** + * SUBTEST: query-invalid-uc-fw-version-mbz + * Test category: functionality test + * Description: Check query with invalid arguments returns expected error code. + * + * SUBTEST: multigpu-query-invalid-uc-fw-version-mbz + * Test category: functionality test + * Sub-category: MultiGPU + * Description: Check query with invalid arguments for all Xe devices. + */ +static void +test_query_uc_fw_version_invalid_mbz(int fd) +{ + struct drm_xe_query_uc_fw_version *uc_fw_version; + struct drm_xe_device_query query = { + .extensions = 0, + .query = DRM_XE_DEVICE_QUERY_UC_FW_VERSION, + .size = 0, + .data = 0, + }; + + igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0); + + uc_fw_version = malloc(query.size); + igt_assert(uc_fw_version); + + uc_fw_version->uc_type = XE_QUERY_UC_TYPE_GUC_SUBMISSION; + uc_fw_version->pad = 0; + uc_fw_version->pad2 = 0; + uc_fw_version->reserved = 0; + query.data = to_user_pointer(uc_fw_version); + + /* Make sure the baseline passes */ + igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0); + + /* Make sure KMD rejects non-zero padding/reserved fields */ + uc_fw_version->pad = -1; + do_ioctl_err(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query, EINVAL); + uc_fw_version->pad = 0; + + uc_fw_version->pad2 = -1; + do_ioctl_err(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query, EINVAL); + uc_fw_version->pad2 = 0; + + uc_fw_version->reserved = -1; + do_ioctl_err(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query, EINVAL); + uc_fw_version->reserved = 0; + + free(uc_fw_version); +} + igt_main { const struct { @@ -743,10 +838,12 @@ igt_main { "query-hwconfig", test_query_hwconfig }, { "query-topology", test_query_gt_topology }, { "query-cs-cycles", test_query_engine_cycles }, + { "query-uc-fw-version-guc", test_query_uc_fw_version_guc }, { "query-invalid-cs-cycles", test_engine_cycles_invalid }, { "query-invalid-query", test_query_invalid_query }, { "query-invalid-size", test_query_invalid_size }, { "query-invalid-extension", test_query_invalid_extension }, + { "query-invalid-uc-fw-version-mbz", test_query_uc_fw_version_invalid_mbz }, { } }, *f; int xe, gpu_count; -- 2.34.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH i-g-t 2/2] drm-uapi/xe: Add test to query HuC firmware version 2024-02-07 20:46 [PATCH i-g-t 0/2] Add tests to query firmware version Francois Dugast 2024-02-07 20:46 ` [PATCH i-g-t 1/2] drm-uapi/xe: Add test to query GuC firmware submission version Francois Dugast @ 2024-02-07 20:46 ` Francois Dugast 2024-02-07 20:52 ` Souza, Jose 2024-02-07 21:31 ` ✓ CI.xeBAT: success for Add tests to query " Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Francois Dugast @ 2024-02-07 20:46 UTC (permalink / raw) To: igt-dev Cc: Francois Dugast, John Harrison, José Roberto de Souza, Lucas De Marchi This aligns with kernel commit ("drm/xe: Extend uAPI to query HuC micro-controler firmware version"). Cc: John Harrison <John.C.Harrison@Intel.com> Cc: José Roberto de Souza <jose.souza@intel.com> Cc: Lucas De Marchi <lucas.demarchi@intel.com> Signed-off-by: Francois Dugast <francois.dugast@intel.com> --- include/drm-uapi/xe_drm.h | 1 + tests/intel/xe_query.c | 46 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h index 3bd795f27..ce4acf9d4 100644 --- a/include/drm-uapi/xe_drm.h +++ b/include/drm-uapi/xe_drm.h @@ -583,6 +583,7 @@ struct drm_xe_query_engine_cycles { struct drm_xe_query_uc_fw_version { /** @uc: The micro-controller type to query firmware version */ #define XE_QUERY_UC_TYPE_GUC_SUBMISSION 0 +#define XE_QUERY_UC_TYPE_HUC 1 __u16 uc_type; /** @pad: MBZ */ diff --git a/tests/intel/xe_query.c b/tests/intel/xe_query.c index d51e73ea5..c2eebe801 100644 --- a/tests/intel/xe_query.c +++ b/tests/intel/xe_query.c @@ -825,6 +825,51 @@ test_query_uc_fw_version_invalid_mbz(int fd) free(uc_fw_version); } +/** + * SUBTEST: query-uc-fw-version-huc + * Test category: functionality test + * Description: Display the HuC firmware version + * + * SUBTEST: multigpu-query-uc-fw-version-huc + * Test category: functionality test + * Sub-category: MultiGPU + * Description: Display HuC firmware version for all Xe devices. + */ +static void +test_query_uc_fw_version_huc(int fd) +{ + struct drm_xe_query_uc_fw_version *uc_fw_version; + struct drm_xe_device_query query = { + .extensions = 0, + .query = DRM_XE_DEVICE_QUERY_UC_FW_VERSION, + .size = 0, + .data = 0, + }; + + igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0); + + uc_fw_version = malloc(query.size); + igt_assert(uc_fw_version); + + uc_fw_version->uc_type = XE_QUERY_UC_TYPE_HUC; + uc_fw_version->pad = 0; + uc_fw_version->pad2 = 0; + uc_fw_version->reserved = 0; + query.data = to_user_pointer(uc_fw_version); + + if (igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query) == 0) { + igt_assert(uc_fw_version->major_ver > 0); + + igt_info("XE_QUERY_UC_TYPE_HUC %u.%u.%u\n", + uc_fw_version->major_ver, + uc_fw_version->minor_ver, + uc_fw_version->patch_ver, + uc_fw_version->branch_ver); + } + + free(uc_fw_version); +} + igt_main { const struct { @@ -839,6 +884,7 @@ igt_main { "query-topology", test_query_gt_topology }, { "query-cs-cycles", test_query_engine_cycles }, { "query-uc-fw-version-guc", test_query_uc_fw_version_guc }, + { "query-uc-fw-version-huc", test_query_uc_fw_version_huc }, { "query-invalid-cs-cycles", test_engine_cycles_invalid }, { "query-invalid-query", test_query_invalid_query }, { "query-invalid-size", test_query_invalid_size }, -- 2.34.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t 2/2] drm-uapi/xe: Add test to query HuC firmware version 2024-02-07 20:46 ` [PATCH i-g-t 2/2] drm-uapi/xe: Add test to query HuC firmware version Francois Dugast @ 2024-02-07 20:52 ` Souza, Jose 0 siblings, 0 replies; 7+ messages in thread From: Souza, Jose @ 2024-02-07 20:52 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Dugast, Francois Cc: Harrison, John C, De Marchi, Lucas On Wed, 2024-02-07 at 20:46 +0000, Francois Dugast wrote: > This aligns with kernel commit ("drm/xe: Extend uAPI to query HuC > micro-controler firmware version"). > > Cc: John Harrison <John.C.Harrison@Intel.com> > Cc: José Roberto de Souza <jose.souza@intel.com> > Cc: Lucas De Marchi <lucas.demarchi@intel.com> > Signed-off-by: Francois Dugast <francois.dugast@intel.com> > --- > include/drm-uapi/xe_drm.h | 1 + > tests/intel/xe_query.c | 46 +++++++++++++++++++++++++++++++++++++++ > 2 files changed, 47 insertions(+) > > diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h > index 3bd795f27..ce4acf9d4 100644 > --- a/include/drm-uapi/xe_drm.h > +++ b/include/drm-uapi/xe_drm.h > @@ -583,6 +583,7 @@ struct drm_xe_query_engine_cycles { > struct drm_xe_query_uc_fw_version { > /** @uc: The micro-controller type to query firmware version */ > #define XE_QUERY_UC_TYPE_GUC_SUBMISSION 0 > +#define XE_QUERY_UC_TYPE_HUC 1 > __u16 uc_type; > > /** @pad: MBZ */ > diff --git a/tests/intel/xe_query.c b/tests/intel/xe_query.c > index d51e73ea5..c2eebe801 100644 > --- a/tests/intel/xe_query.c > +++ b/tests/intel/xe_query.c > @@ -825,6 +825,51 @@ test_query_uc_fw_version_invalid_mbz(int fd) > free(uc_fw_version); > } > > +/** > + * SUBTEST: query-uc-fw-version-huc > + * Test category: functionality test > + * Description: Display the HuC firmware version > + * > + * SUBTEST: multigpu-query-uc-fw-version-huc > + * Test category: functionality test > + * Sub-category: MultiGPU > + * Description: Display HuC firmware version for all Xe devices. > + */ > +static void > +test_query_uc_fw_version_huc(int fd) > +{ > + struct drm_xe_query_uc_fw_version *uc_fw_version; > + struct drm_xe_device_query query = { > + .extensions = 0, > + .query = DRM_XE_DEVICE_QUERY_UC_FW_VERSION, > + .size = 0, > + .data = 0, > + }; > + > + igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0); > + > + uc_fw_version = malloc(query.size); > + igt_assert(uc_fw_version); > + > + uc_fw_version->uc_type = XE_QUERY_UC_TYPE_HUC; > + uc_fw_version->pad = 0; > + uc_fw_version->pad2 = 0; > + uc_fw_version->reserved = 0; > + query.data = to_user_pointer(uc_fw_version); > + > + if (igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query) == 0) { The only error it should accept is -ENODEV(no media IP or lack of HuC firmware) all other errors should fail the test. > + igt_assert(uc_fw_version->major_ver > 0); > + > + igt_info("XE_QUERY_UC_TYPE_HUC %u.%u.%u\n", > + uc_fw_version->major_ver, > + uc_fw_version->minor_ver, > + uc_fw_version->patch_ver, > + uc_fw_version->branch_ver); > + } > + > + free(uc_fw_version); > +} > + > igt_main > { > const struct { > @@ -839,6 +884,7 @@ igt_main > { "query-topology", test_query_gt_topology }, > { "query-cs-cycles", test_query_engine_cycles }, > { "query-uc-fw-version-guc", test_query_uc_fw_version_guc }, > + { "query-uc-fw-version-huc", test_query_uc_fw_version_huc }, > { "query-invalid-cs-cycles", test_engine_cycles_invalid }, > { "query-invalid-query", test_query_invalid_query }, > { "query-invalid-size", test_query_invalid_size }, ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ CI.xeBAT: success for Add tests to query firmware version 2024-02-07 20:46 [PATCH i-g-t 0/2] Add tests to query firmware version Francois Dugast 2024-02-07 20:46 ` [PATCH i-g-t 1/2] drm-uapi/xe: Add test to query GuC firmware submission version Francois Dugast 2024-02-07 20:46 ` [PATCH i-g-t 2/2] drm-uapi/xe: Add test to query HuC firmware version Francois Dugast @ 2024-02-07 21:31 ` Patchwork 2024-02-07 21:54 ` ✓ Fi.CI.BAT: " Patchwork 2024-02-08 2:26 ` ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-02-07 21:31 UTC (permalink / raw) To: Francois Dugast; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1055 bytes --] == Series Details == Series: Add tests to query firmware version URL : https://patchwork.freedesktop.org/series/129647/ State : success == Summary == CI Bug Log - changes from XEIGT_7705_BAT -> XEIGTPW_10647_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (3 -> 3) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7705 -> IGTPW_10647 * Linux: xe-744-e33f766ecfa1aee40eec83b3a146eb84a5e23222 -> xe-746-eb1e13ab1374d4785d5f2b2584d88e6e05311229 IGTPW_10647: 10647 IGT_7705: 45aef708b65772e54ee9a68b1f3885fa25140fdf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-744-e33f766ecfa1aee40eec83b3a146eb84a5e23222: e33f766ecfa1aee40eec83b3a146eb84a5e23222 xe-746-eb1e13ab1374d4785d5f2b2584d88e6e05311229: eb1e13ab1374d4785d5f2b2584d88e6e05311229 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10647/index.html [-- Attachment #2: Type: text/html, Size: 1614 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for Add tests to query firmware version 2024-02-07 20:46 [PATCH i-g-t 0/2] Add tests to query firmware version Francois Dugast ` (2 preceding siblings ...) 2024-02-07 21:31 ` ✓ CI.xeBAT: success for Add tests to query " Patchwork @ 2024-02-07 21:54 ` Patchwork 2024-02-08 2:26 ` ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-02-07 21:54 UTC (permalink / raw) To: Francois Dugast; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8913 bytes --] == Series Details == Series: Add tests to query firmware version URL : https://patchwork.freedesktop.org/series/129647/ State : success == Summary == CI Bug Log - changes from CI_DRM_14240 -> IGTPW_10647 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/index.html Participating hosts (36 -> 35) ------------------------------ Additional (2): bat-mtlp-8 bat-arls-2 Missing (3): fi-bsw-n3050 fi-apl-guc fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10647: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_exec_fence@basic-busy@rcs0: - {bat-arls-1}: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/bat-arls-1/igt@gem_exec_fence@basic-busy@rcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/bat-arls-1/igt@gem_exec_fence@basic-busy@rcs0.html * igt@i915_selftest@live@ring_submission: - {bat-arls-2}: NOTRUN -> [DMESG-FAIL][3] +13 other tests dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/bat-arls-2/igt@i915_selftest@live@ring_submission.html Known issues ------------ Here are the changes found in IGTPW_10647 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-mtlp-8: NOTRUN -> [SKIP][4] ([i915#9318]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html * igt@gem_lmem_swapping@verify-random: - bat-mtlp-8: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-mtlp-8: NOTRUN -> [SKIP][6] ([i915#4083]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/bat-mtlp-8/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#4077]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/bat-mtlp-8/igt@gem_mmap_gtt@basic.html * igt@gem_render_tiled_blits@basic: - bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#4079]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html * igt@i915_pm_rps@basic-api: - bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#6621]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/bat-mtlp-8/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#5190]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][11] ([i915#4212]) +8 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][12] ([i915#4213]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-mtlp-8: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#3840] / [i915#9159]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/bat-mtlp-8/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-mtlp-8: NOTRUN -> [SKIP][14] ([fdo#109285]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-mtlp-8: NOTRUN -> [SKIP][15] ([i915#5274]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_setmode@basic-clone-single-crtc: - bat-mtlp-8: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#8809]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-mmap: - bat-mtlp-8: NOTRUN -> [SKIP][17] ([i915#3708] / [i915#4077]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-mtlp-8: NOTRUN -> [SKIP][18] ([i915#3708]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html #### Possible fixes #### * igt@gem_exec_fence@basic-busy@ccs0: - {bat-arls-1}: [DMESG-WARN][19] -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/bat-arls-1/igt@gem_exec_fence@basic-busy@ccs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/bat-arls-1/igt@gem_exec_fence@basic-busy@ccs0.html * igt@i915_selftest@live@execlists: - fi-bsw-nick: [ABORT][21] ([i915#7911]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/fi-bsw-nick/igt@i915_selftest@live@execlists.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/fi-bsw-nick/igt@i915_selftest@live@execlists.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#10194]: https://gitlab.freedesktop.org/drm/intel/issues/10194 [i915#10196]: https://gitlab.freedesktop.org/drm/intel/issues/10196 [i915#10197]: https://gitlab.freedesktop.org/drm/intel/issues/10197 [i915#10200]: https://gitlab.freedesktop.org/drm/intel/issues/10200 [i915#10202]: https://gitlab.freedesktop.org/drm/intel/issues/10202 [i915#10206]: https://gitlab.freedesktop.org/drm/intel/issues/10206 [i915#10207]: https://gitlab.freedesktop.org/drm/intel/issues/10207 [i915#10208]: https://gitlab.freedesktop.org/drm/intel/issues/10208 [i915#10209]: https://gitlab.freedesktop.org/drm/intel/issues/10209 [i915#10211]: https://gitlab.freedesktop.org/drm/intel/issues/10211 [i915#10212]: https://gitlab.freedesktop.org/drm/intel/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/intel/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/intel/issues/10214 [i915#10215]: https://gitlab.freedesktop.org/drm/intel/issues/10215 [i915#10216]: https://gitlab.freedesktop.org/drm/intel/issues/10216 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7705 -> IGTPW_10647 CI-20190529: 20190529 CI_DRM_14240: eb1e13ab1374d4785d5f2b2584d88e6e05311229 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10647: 10647 IGT_7705: 45aef708b65772e54ee9a68b1f3885fa25140fdf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz +igt@xe_query@multigpu-query-uc-fw-version-guc +igt@xe_query@multigpu-query-uc-fw-version-huc +igt@xe_query@query-invalid-uc-fw-version-mbz +igt@xe_query@query-uc-fw-version-guc +igt@xe_query@query-uc-fw-version-huc == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/index.html [-- Attachment #2: Type: text/html, Size: 9059 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.IGT: failure for Add tests to query firmware version 2024-02-07 20:46 [PATCH i-g-t 0/2] Add tests to query firmware version Francois Dugast ` (3 preceding siblings ...) 2024-02-07 21:54 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-02-08 2:26 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-02-08 2:26 UTC (permalink / raw) To: Francois Dugast; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 82378 bytes --] == Series Details == Series: Add tests to query firmware version URL : https://patchwork.freedesktop.org/series/129647/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14240_full -> IGTPW_10647_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10647_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10647_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10647_full: ### IGT changes ### #### Possible regressions #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2: - shard-rkl: NOTRUN -> [INCOMPLETE][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-3/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html Known issues ------------ Here are the changes found in IGTPW_10647_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-17/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@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_10647/shard-rkl-1/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-8/igt@api_intel_bb@object-reloc-purge-cache.html * igt@drm_fdinfo@busy-hang@rcs0: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414]) +12 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-2/igt@drm_fdinfo@busy-hang@rcs0.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +13 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-5/igt@drm_fdinfo@busy-idle@bcs0.html * igt@gem_basic@multigpu-create-close: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#7697]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-2/igt@gem_basic@multigpu-create-close.html * igt@gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#4873]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-3/igt@gem_caching@reads.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-10/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_persistence@heartbeat-close: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8555]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8555]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#280]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-2/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#4812]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-5/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_capture@many-4k-incremental: - shard-dg2: NOTRUN -> [FAIL][15] ([i915#9606]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-7/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_fair@basic-none-share: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#3539] / [i915#4852]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-13/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-none-solo: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4473]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-2/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-none@rcs0: - shard-glk: NOTRUN -> [FAIL][18] ([i915#2842]) +2 other tests fail [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-glk4/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-rkl: NOTRUN -> [SKIP][19] ([fdo#109313]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-1/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#3539] / [i915#4852]) +4 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-10/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_params@secure-non-master: - shard-dg1: NOTRUN -> [SKIP][21] ([fdo#112283]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-13/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#3281]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-6/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_reloc@basic-wc: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#3281]) +6 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-7/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_reloc@basic-wc-cpu-active: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#3281]) +2 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-cpu-active.html * igt@gem_exec_reloc@basic-write-wc: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#3281]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-16/igt@gem_exec_reloc@basic-write-wc.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4537] / [i915#4812]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_suspend@basic-s3@smem: - shard-tglu: [PASS][27] -> [INCOMPLETE][28] ([i915#8797]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-tglu-6/igt@gem_exec_suspend@basic-s3@smem.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-3/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4860]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4860]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-2/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_lmem_swapping@massive: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#4613]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-5/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@massive-random: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4613]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-5/igt@gem_lmem_swapping@massive-random.html - shard-tglu: NOTRUN -> [SKIP][33] ([i915#4613]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-6/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#4613]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-glk9/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][35] -> [TIMEOUT][36] ([i915#5493]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4565]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-19/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_mmap_gtt@basic-write-read-distinct: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4077]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-1/igt@gem_mmap_gtt@basic-write-read-distinct.html * igt@gem_mmap_gtt@big-bo-tiledx: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4077]) +6 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-6/igt@gem_mmap_gtt@big-bo-tiledx.html * igt@gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4083]) +5 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-1/igt@gem_mmap_wc@bad-size.html * igt@gem_mmap_wc@copy: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4083]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-8/igt@gem_mmap_wc@copy.html * igt@gem_pread@display: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#3282]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-7/igt@gem_pread@display.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3282]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-6/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][44] ([i915#2658]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-glk4/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-context-1: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4270]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-8/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-tglu: NOTRUN -> [SKIP][46] ([i915#4270]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4270]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-6/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#4270]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-3/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4270]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-15/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#8428]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-4/igt@gem_render_copy@linear-to-vebox-y-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][51] ([fdo#109271]) +99 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-glk2/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#5190]) +11 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-2/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4079]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-10/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4077]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-15/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3297]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-4/igt@gem_userptr_blits@access-control.html - shard-rkl: NOTRUN -> [SKIP][56] ([i915#3297]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-7/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3297] / [i915#4880]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#3297]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-12/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen7_exec_parse@load-register-reg: - shard-mtlp: NOTRUN -> [SKIP][59] ([fdo#109289]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-3/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@allowed-single: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#2527]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-invalid-length: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#2527]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-15/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#2527] / [i915#2856]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-2/igt@gen9_exec_parse@bb-start-cmd.html - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#2856]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-3/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#2856]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-1/igt@gen9_exec_parse@bb-start-far.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [PASS][65] -> [INCOMPLETE][66] ([i915#10137] / [i915#9820] / [i915#9849]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [INCOMPLETE][67] ([i915#10137] / [i915#9820] / [i915#9849]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#7091]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [PASS][69] -> [FAIL][70] ([i915#3591]) +1 other test fail [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#6621]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-17/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][72] -> [INCOMPLETE][73] ([i915#10137] / [i915#7790]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-snb2/igt@i915_pm_rps@reset.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-snb4/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#8925]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-10/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#6188]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-7/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#5723]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-1/igt@i915_query@test-query-geometry-subslices.html - shard-tglu: NOTRUN -> [SKIP][77] ([i915#5723]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-3/igt@i915_query@test-query-geometry-subslices.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4212]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-12/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4215] / [i915#5190]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1: - shard-tglu: [PASS][80] -> [FAIL][81] ([i915#2521]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-tglu-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#8709]) +11 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#6229]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-5/igt@kms_async_flips@test-cursor.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][84] ([fdo#111614]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][85] ([fdo#111615] / [i915#5286]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][86] ([fdo#111614]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-7/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#5286]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html - shard-dg1: NOTRUN -> [SKIP][88] ([i915#4538] / [i915#5286]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#3638]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-18/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][90] ([fdo#111614]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-5/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][91] -> [FAIL][92] ([i915#3743]) +2 other tests fail [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-snb: NOTRUN -> [SKIP][93] ([fdo#109271]) +36 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-snb4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][94] ([fdo#111614] / [i915#3638]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-mtlp: NOTRUN -> [SKIP][95] ([fdo#111615]) +5 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4538] / [i915#5190]) +12 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#4538]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][98] ([fdo#111615]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][99] ([fdo#110723]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#5354] / [i915#6095]) +13 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf-tiled-ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-y-tiled-gen12-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#5354] / [i915#6095]) +11 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-3/igt@kms_ccs@pipe-a-random-ccs-data-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#5354]) +73 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-10/igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#5354] / [i915#6095]) +12 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-15/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#5354]) +20 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-5/igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#5354] / [i915#6095]) +17 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-5/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf-tiled-ccs.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#7828]) +10 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-7/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_audio@hdmi-audio: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#7828]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-17/igt@kms_chamelium_audio@hdmi-audio.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2: NOTRUN -> [SKIP][108] ([fdo#111827]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-2/igt@kms_chamelium_color@ctm-0-25.html - shard-rkl: NOTRUN -> [SKIP][109] ([fdo#111827]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-7/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-0-50: - shard-tglu: NOTRUN -> [SKIP][110] ([fdo#111827]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-5/igt@kms_chamelium_color@ctm-0-50.html - shard-mtlp: NOTRUN -> [SKIP][111] ([fdo#111827]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-8/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#7828]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-3/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#7828]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-3/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#7828]) +6 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#7116]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-12/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#7118]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-5/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#7118]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-10/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#3555] / [i915#8814]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html - shard-tglu: NOTRUN -> [SKIP][119] ([i915#3555]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#3359]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#3359]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#3359]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][123] ([fdo#109274] / [fdo#111767] / [i915#5354]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][124] ([fdo#109274] / [i915#5354]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4103] / [i915#4213]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#9809]) +2 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-rkl: NOTRUN -> [SKIP][127] ([fdo#111825]) +6 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-snb: [PASS][128] -> [SKIP][129] ([fdo#109271] / [fdo#111767]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][130] -> [FAIL][131] ([i915#2346]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#4213]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][133] ([fdo#110189] / [i915#9227]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3555]) +7 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-10/igt@kms_display_modes@extended-mode-basic.html - shard-rkl: NOTRUN -> [SKIP][135] ([i915#3555]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-5/igt@kms_display_modes@extended-mode-basic.html - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#3555] / [i915#8827]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-8/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-1-pipe-b-vga-1: - shard-snb: NOTRUN -> [FAIL][137] ([i915#9841]) +3 other tests fail [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-snb7/igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-1-pipe-b-vga-1.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#3840]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#3840]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#3555] / [i915#3840]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-1/igt@kms_dsc@dsc-with-bpc-formats.html - shard-rkl: NOTRUN -> [SKIP][141] ([i915#3555] / [i915#3840]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-3/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#3555] / [i915#3840]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-18/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#3469]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-10/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#1839]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-10/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3637]) +3 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-5/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][146] ([fdo#109274] / [i915#3637] / [i915#3966]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-6/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][147] ([fdo#111767] / [i915#3637]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-dg2: NOTRUN -> [SKIP][148] ([fdo#109274] / [fdo#111767]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-1/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-rkl: NOTRUN -> [SKIP][149] ([fdo#111767] / [fdo#111825]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][150] ([fdo#109274]) +10 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-10/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][151] ([fdo#109274] / [i915#3637]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-3/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-dg1: NOTRUN -> [SKIP][152] ([fdo#111825] / [i915#9934]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-17/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#2672]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#2672]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][155] ([i915#2672]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#5274]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-7/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][157] ([i915#6880]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#8708]) +22 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][159] ([fdo#109280]) +8 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-snb: [PASS][160] -> [SKIP][161] ([fdo#109271]) +9 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#8708]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#10055]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][164] ([fdo#111825] / [i915#1825]) +15 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#1825]) +10 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][166] ([fdo#111825]) +5 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-mtlp: [PASS][167] -> [DMESG-WARN][168] ([i915#1982]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][169] ([fdo#110189]) +4 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3023]) +11 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#3458]) +16 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#8708]) +7 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][173] ([fdo#111767] / [fdo#111825] / [i915#1825]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][174] ([fdo#111767] / [i915#5354]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#3458]) +4 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#8228]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-5/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#8228]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-3/igt@kms_hdr@invalid-hdr.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-rkl: NOTRUN -> [SKIP][178] ([fdo#109289]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-5/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-dg2: NOTRUN -> [SKIP][179] ([fdo#109289]) +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-2/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][180] ([fdo#109274] / [i915#5354] / [i915#9423]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][181] ([i915#8292]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][182] ([i915#8292]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#9423]) +7 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#9423]) +7 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#5176] / [i915#9423]) +3 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#5176] / [i915#9423]) +3 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#5176] / [i915#9423]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#9423]) +9 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#5235]) +5 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#5235]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#5235] / [i915#9423]) +11 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#5235]) +3 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#5235]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#5235]) +11 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#5354]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-18/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#9685]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-1/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-rkl: NOTRUN -> [SKIP][197] ([i915#9685]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-3/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-tglu: NOTRUN -> [SKIP][198] ([i915#9685]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-6/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#9293]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-8/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#8430]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-5/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#9519]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][202] -> [SKIP][203] ([i915#9519]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][204] -> [SKIP][205] ([i915#9519]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#9519]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#9519]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][208] ([fdo#109293] / [fdo#109506]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-2/igt@kms_pm_rpm@modeset-pc8-residency-stress.html - shard-rkl: NOTRUN -> [SKIP][209] ([fdo#109293] / [fdo#109506]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-2/igt@kms_pm_rpm@modeset-pc8-residency-stress.html - shard-tglu: NOTRUN -> [SKIP][210] ([fdo#109293] / [fdo#109506]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-3/igt@kms_pm_rpm@modeset-pc8-residency-stress.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][211] ([fdo#111068] / [i915#9683]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-16/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][212] ([fdo#111068] / [i915#9683]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#9683]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#4348]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-2/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#4884]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-12/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#5289]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#5289]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#4235]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-rkl: [PASS][219] -> [INCOMPLETE][220] ([i915#8875] / [i915#9569]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-rkl-5/igt@kms_rotation_crc@sprite-rotation-90.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-7/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#4235]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][222] ([IGT#2]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-6/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#8623]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-mtlp: [PASS][224] -> [FAIL][225] ([i915#9196]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [PASS][226] -> [FAIL][227] ([i915#9196]) +1 other test fail [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#2437] / [i915#9412]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#2437] / [i915#9412]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-6/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#7387]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-5/igt@perf@global-sseu-config.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#8516]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-5/igt@perf_pmu@rc6@other-idle-gt0.html - shard-dg1: NOTRUN -> [SKIP][232] ([i915#8516]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-15/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@coherency-gtt: - shard-tglu: NOTRUN -> [SKIP][233] ([fdo#109295] / [fdo#111656]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-3/igt@prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][234] ([i915#3708] / [i915#4077]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-7/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#9917]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-7/igt@sriov_basic@bind-unbind-vf.html * igt@v3d/v3d_mmap@mmap-bo: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#2575]) +4 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-6/igt@v3d/v3d_mmap@mmap-bo.html * igt@v3d/v3d_submit_cl@multisync-out-syncs: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#2575]) +11 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-5/igt@v3d/v3d_submit_cl@multisync-out-syncs.html * igt@v3d/v3d_submit_csd@bad-multisync-in-sync: - shard-tglu: NOTRUN -> [SKIP][238] ([fdo#109315] / [i915#2575]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-3/igt@v3d/v3d_submit_csd@bad-multisync-in-sync.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-rkl: NOTRUN -> [SKIP][239] ([fdo#109315]) +4 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-2/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@v3d/v3d_submit_csd@valid-multisync-submission: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#2575]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-12/igt@v3d/v3d_submit_csd@valid-multisync-submission.html * igt@vc4/vc4_perfmon@destroy-valid-perfmon: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#7711]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-15/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html * igt@vc4/vc4_purgeable_bo@mark-purgeable: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#7711]) +6 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-4/igt@vc4/vc4_purgeable_bo@mark-purgeable.html * igt@vc4/vc4_purgeable_bo@mark-purgeable-twice: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#7711]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-5/igt@vc4/vc4_purgeable_bo@mark-purgeable-twice.html - shard-dg2: NOTRUN -> [SKIP][244] ([i915#7711]) +5 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-1/igt@vc4/vc4_purgeable_bo@mark-purgeable-twice.html * igt@vc4/vc4_tiling@set-bad-flags: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#2575]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-3/igt@vc4/vc4_tiling@set-bad-flags.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][246] ([i915#7742]) -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_eio@in-flight-suspend: - shard-dg1: [DMESG-WARN][248] ([i915#4391] / [i915#4423]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-dg1-15/igt@gem_eio@in-flight-suspend.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-17/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][250] ([i915#5784]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-dg1-15/igt@gem_eio@reset-stress.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-19/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [FAIL][252] ([i915#2842]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-rkl-3/igt@gem_exec_fair@basic-none@vcs0.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-1/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][254] ([i915#2842]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-tglu: [FAIL][256] ([i915#2842]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-tglu-3/igt@gem_exec_fair@basic-throttle@rcs0.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-5/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][258] ([i915#5493]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_offset@open-flood: - shard-rkl: [INCOMPLETE][260] -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-rkl-3/igt@gem_mmap_offset@open-flood.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-3/igt@gem_mmap_offset@open-flood.html * igt@kms_addfb_basic@invalid-get-prop-any: - shard-dg1: [DMESG-WARN][262] ([i915#4423]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-dg1-15/igt@kms_addfb_basic@invalid-get-prop-any.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-16/igt@kms_addfb_basic@invalid-get-prop-any.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][264] ([i915#3743]) -> [PASS][265] +2 other tests pass [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-d-edp-1: - shard-mtlp: [FAIL][266] -> [PASS][267] +1 other test pass [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-d-edp-1.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-d-edp-1.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-snb: [SKIP][268] ([fdo#109271] / [fdo#111767]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][270] ([i915#2346]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-snb: [SKIP][272] ([fdo#109271]) -> [PASS][273] +6 other tests pass [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_pm_rpm@i2c: - shard-dg2: [FAIL][274] ([i915#8717]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-dg2-2/igt@kms_pm_rpm@i2c.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-7/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][276] ([i915#9519]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][278] ([i915#9519]) -> [PASS][279] +1 other test pass [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: [FAIL][280] ([i915#4349]) -> [PASS][281] +1 other test pass [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-mtlp-1/igt@perf_pmu@busy-double-start@rcs0.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html #### Warnings #### * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: [SKIP][282] ([i915#4423] / [i915#4565]) -> [SKIP][283] ([i915#4565]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [INCOMPLETE][284] ([i915#10137] / [i915#9849]) -> [ABORT][285] ([i915#9820]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-tglu: [FAIL][286] ([i915#3591]) -> [WARN][287] ([i915#2681]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@kms_ccs@pipe-d-bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg1: [SKIP][288] ([i915#4423] / [i915#5354] / [i915#6095]) -> [SKIP][289] ([i915#5354] / [i915#6095]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-dg1-15/igt@kms_ccs@pipe-d-bad-rotation-90-y-tiled-gen12-mc-ccs.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-dg1-18/igt@kms_ccs@pipe-d-bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_content_protection@atomic-dpms: - shard-snb: [SKIP][290] ([fdo#109271]) -> [INCOMPLETE][291] ([i915#8816]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-snb4/igt@kms_content_protection@atomic-dpms.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-snb7/igt@kms_content_protection@atomic-dpms.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][292] ([fdo#110189] / [i915#3955]) -> [SKIP][293] ([i915#3955]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-rkl-2/igt@kms_fbcon_fbt@psr.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-3/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][294] ([i915#3955]) -> [SKIP][295] ([fdo#110189] / [i915#3955]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render: - shard-snb: [SKIP][296] ([fdo#109271]) -> [SKIP][297] ([fdo#109271] / [fdo#111767]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-snb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render: - shard-snb: [SKIP][298] ([fdo#109271] / [fdo#111767]) -> [SKIP][299] ([fdo#109271]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-snb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][300] ([i915#4070] / [i915#4816]) -> [SKIP][301] ([i915#4816]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [FAIL][302] ([i915#9295]) -> [SKIP][303] ([i915#3361]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-4/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][304] ([i915#4281]) -> [SKIP][305] ([i915#3361]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14240/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10647/shard-rkl-7/igt@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). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8797]: https://gitlab.freedesktop.org/drm/intel/issues/8797 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9841]: https://gitlab.freedesktop.org/drm/intel/issues/9841 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7705 -> IGTPW_10647 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_14240: eb1e13ab1374d4785d5f2b2584d88e6e05311229 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10647: 10647 IGT_7705: 45aef708b65772e54ee9a68b1f3885fa25140fdf @ 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_10647/index.html [-- Attachment #2: Type: text/html, Size: 101644 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-02-08 2:26 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-02-07 20:46 [PATCH i-g-t 0/2] Add tests to query firmware version Francois Dugast 2024-02-07 20:46 ` [PATCH i-g-t 1/2] drm-uapi/xe: Add test to query GuC firmware submission version Francois Dugast 2024-02-07 20:46 ` [PATCH i-g-t 2/2] drm-uapi/xe: Add test to query HuC firmware version Francois Dugast 2024-02-07 20:52 ` Souza, Jose 2024-02-07 21:31 ` ✓ CI.xeBAT: success for Add tests to query " Patchwork 2024-02-07 21:54 ` ✓ Fi.CI.BAT: " Patchwork 2024-02-08 2:26 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox