* [PATCH i-g-t] tests/intel/xe_compute_preempt: Extend it for more engines
@ 2024-02-20 20:04 Nirmoy Das
2024-02-20 23:12 ` ✓ CI.xeBAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Nirmoy Das @ 2024-02-20 20:04 UTC (permalink / raw)
To: igt-dev; +Cc: Nirmoy Das, Janga Rahul Kumar
Extend the test to run on all eligible engines.
Cc: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
---
lib/intel_compute.c | 21 +++++++++++++--------
lib/intel_compute.h | 2 +-
tests/intel/xe_compute_preempt.c | 17 +++++++++++++----
3 files changed, 27 insertions(+), 13 deletions(-)
diff --git a/lib/intel_compute.c b/lib/intel_compute.c
index eab407a0d..c5d253ebc 100644
--- a/lib/intel_compute.c
+++ b/lib/intel_compute.c
@@ -1526,7 +1526,8 @@ static void xe2lpg_compute_preempt_exec(int fd, const unsigned char *long_kernel
const unsigned char *short_kernel,
unsigned int short_kernel_size,
const unsigned char *sip_kernel,
- unsigned int sip_kernel_size)
+ unsigned int sip_kernel_size,
+ struct drm_xe_engine_class_instance *eci)
{
#define XE2_BO_PREEMPT_DICT_ENTRIES 11
struct bo_dict_entry bo_dict_long[XE2_BO_PREEMPT_DICT_ENTRIES] = {
@@ -1578,8 +1579,8 @@ static void xe2lpg_compute_preempt_exec(int fd, const unsigned char *long_kernel
for (int i = 0; i < XE2_BO_PREEMPT_DICT_ENTRIES; ++i)
bo_dict_short[i] = bo_dict_long[i];
- bo_execenv_create(fd, &execenv_short, NULL);
- bo_execenv_create(fd, &execenv_long, NULL);
+ bo_execenv_create(fd, &execenv_short, eci);
+ bo_execenv_create(fd, &execenv_long, eci);
bo_dict_long[0].size = ALIGN(long_kernel_size, 0x1000);
bo_dict_short[0].size = ALIGN(short_kernel_size, 0x1000);
@@ -1673,7 +1674,8 @@ static const struct {
const unsigned char *short_kernel,
unsigned int short_kernel_size,
const unsigned char *sip_kernel,
- unsigned int sip_kernel_size);
+ unsigned int sip_kernel_size,
+ struct drm_xe_engine_class_instance *eci);
uint32_t compat;
} intel_compute_preempt_batches[] = {
{
@@ -1683,7 +1685,8 @@ static const struct {
},
};
-static bool __run_intel_compute_kernel_preempt(int fd)
+static bool __run_intel_compute_kernel_preempt(int fd,
+ struct drm_xe_engine_class_instance *eci)
{
unsigned int ip_ver = intel_graphics_ver(intel_get_drm_devid(fd));
unsigned int batch;
@@ -1720,7 +1723,8 @@ static bool __run_intel_compute_kernel_preempt(int fd)
kernels->long_kernel_size,
kernels->kernel, kernels->size,
kernels->sip_kernel,
- kernels->sip_kernel_size);
+ kernels->sip_kernel_size,
+ eci);
return true;
}
@@ -1732,7 +1736,8 @@ static bool __run_intel_compute_kernel_preempt(int fd)
*
* Returns true on success, false otherwise.
*/
-bool run_intel_compute_kernel_preempt(int fd)
+bool run_intel_compute_kernel_preempt(int fd,
+ struct drm_xe_engine_class_instance *eci)
{
- return __run_intel_compute_kernel_preempt(fd);
+ return __run_intel_compute_kernel_preempt(fd, eci);
}
diff --git a/lib/intel_compute.h b/lib/intel_compute.h
index a02688ad4..fe9637b91 100644
--- a/lib/intel_compute.h
+++ b/lib/intel_compute.h
@@ -37,5 +37,5 @@ extern const struct intel_compute_kernels intel_compute_square_kernels[];
bool run_intel_compute_kernel(int fd);
bool xe_run_intel_compute_kernel_on_engine(int fd, struct drm_xe_engine_class_instance *eci);
-bool run_intel_compute_kernel_preempt(int fd);
+bool run_intel_compute_kernel_preempt(int fd, struct drm_xe_engine_class_instance *eci);
#endif /* INTEL_COMPUTE_H */
diff --git a/tests/intel/xe_compute_preempt.c b/tests/intel/xe_compute_preempt.c
index 31703638e..a4e0e1454 100644
--- a/tests/intel/xe_compute_preempt.c
+++ b/tests/intel/xe_compute_preempt.c
@@ -24,20 +24,29 @@
* Functionality: compute openCL kernel
*/
static void
-test_compute_preempt(int fd)
+test_compute_preempt(int fd, struct drm_xe_engine_class_instance *hwe)
{
- igt_require_f(run_intel_compute_kernel_preempt(fd), "GPU not supported\n");
+ igt_require_f(run_intel_compute_kernel_preempt(fd, hwe), "GPU not supported\n");
}
igt_main
{
int xe;
+ struct drm_xe_engine_class_instance *hwe;
igt_fixture
xe = drm_open_driver(DRIVER_XE);
- igt_subtest("compute-preempt")
- test_compute_preempt(xe);
+ igt_subtest_with_dynamic("compute-preempt") {
+ xe_for_each_engine(xe, hwe) {
+ if (hwe->engine_class != DRM_XE_ENGINE_CLASS_COMPUTE &&
+ hwe->engine_class != DRM_XE_ENGINE_CLASS_RENDER)
+ continue;
+
+ igt_dynamic_f("engine-%s", xe_engine_class_string(hwe->engine_class))
+ test_compute_preempt(xe, hwe);
+ }
+ }
igt_fixture
drm_close_driver(xe);
--
2.42.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* ✓ CI.xeBAT: success for tests/intel/xe_compute_preempt: Extend it for more engines 2024-02-20 20:04 [PATCH i-g-t] tests/intel/xe_compute_preempt: Extend it for more engines Nirmoy Das @ 2024-02-20 23:12 ` Patchwork 2024-02-20 23:43 ` ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-02-20 23:12 UTC (permalink / raw) To: Nirmoy Das; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1078 bytes --] == Series Details == Series: tests/intel/xe_compute_preempt: Extend it for more engines URL : https://patchwork.freedesktop.org/series/130149/ State : success == Summary == CI Bug Log - changes from XEIGT_7718_BAT -> XEIGTPW_10705_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7718 -> IGTPW_10705 * Linux: xe-803-f12bce6493b6443870b55f36b1462d65e450d29d -> xe-807-e2b02e89746d8eff8c244f938eecd0f1db8eb805 IGTPW_10705: 10705 IGT_7718: 40e8b9122853f455c84afcfa56469a6bc9a0d564 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-803-f12bce6493b6443870b55f36b1462d65e450d29d: f12bce6493b6443870b55f36b1462d65e450d29d xe-807-e2b02e89746d8eff8c244f938eecd0f1db8eb805: e2b02e89746d8eff8c244f938eecd0f1db8eb805 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10705/index.html [-- Attachment #2: Type: text/html, Size: 1637 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Fi.CI.BAT: success for tests/intel/xe_compute_preempt: Extend it for more engines 2024-02-20 20:04 [PATCH i-g-t] tests/intel/xe_compute_preempt: Extend it for more engines Nirmoy Das 2024-02-20 23:12 ` ✓ CI.xeBAT: success for " Patchwork @ 2024-02-20 23:43 ` Patchwork 2024-02-21 2:15 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-02-22 6:41 ` [PATCH i-g-t] " Kumar, Janga Rahul 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-02-20 23:43 UTC (permalink / raw) To: Nirmoy Das; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7384 bytes --] == Series Details == Series: tests/intel/xe_compute_preempt: Extend it for more engines URL : https://patchwork.freedesktop.org/series/130149/ State : success == Summary == CI Bug Log - changes from CI_DRM_14304 -> IGTPW_10705 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/index.html Participating hosts (39 -> 39) ------------------------------ Additional (2): fi-glk-j4005 bat-arls-3 Missing (2): bat-arls-2 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10705: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@gt_tlb: - {bat-arls-3}: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/bat-arls-3/igt@i915_selftest@live@gt_tlb.html Known issues ------------ Here are the changes found in IGTPW_10705 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-jsl-1: NOTRUN -> [SKIP][2] ([i915#9318]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/bat-jsl-1/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/bat-jsl-1/igt@gem_huc_copy@huc-copy.html - fi-glk-j4005: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#2190]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-glk-j4005: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#4613]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/fi-glk-j4005/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@random-engines: - fi-bsw-n3050: NOTRUN -> [SKIP][6] ([fdo#109271]) +15 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-random: - bat-jsl-1: NOTRUN -> [SKIP][7] ([i915#4613]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/bat-jsl-1/igt@gem_lmem_swapping@verify-random.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-glk-j4005: NOTRUN -> [SKIP][8] ([fdo#109271]) +6 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/fi-glk-j4005/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-jsl-1: NOTRUN -> [SKIP][9] ([i915#4103]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-jsl-1: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9886]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/bat-jsl-1/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-jsl-1: NOTRUN -> [SKIP][11] ([fdo#109285]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1: - bat-dg2-8: [PASS][12] -> [FAIL][13] ([i915#10164]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html * igt@kms_setmode@basic-clone-single-crtc: - bat-jsl-1: NOTRUN -> [SKIP][14] ([i915#3555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-dg2-11: [DMESG-FAIL][15] ([i915#9500]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/bat-dg2-11/igt@i915_selftest@live@workarounds.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/bat-dg2-11/igt@i915_selftest@live@workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#484]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/484 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#10164]: https://gitlab.freedesktop.org/drm/intel/issues/10164 [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#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9500]: https://gitlab.freedesktop.org/drm/intel/issues/9500 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812 [i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7718 -> IGTPW_10705 CI-20190529: 20190529 CI_DRM_14304: 52e6f4fe13d7b1f498009a367c6ce19466f167cc @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10705: 10705 IGT_7718: 40e8b9122853f455c84afcfa56469a6bc9a0d564 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/index.html [-- Attachment #2: Type: text/html, Size: 7115 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/intel/xe_compute_preempt: Extend it for more engines 2024-02-20 20:04 [PATCH i-g-t] tests/intel/xe_compute_preempt: Extend it for more engines Nirmoy Das 2024-02-20 23:12 ` ✓ CI.xeBAT: success for " Patchwork 2024-02-20 23:43 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-02-21 2:15 ` Patchwork 2024-02-22 6:41 ` [PATCH i-g-t] " Kumar, Janga Rahul 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-02-21 2:15 UTC (permalink / raw) To: Nirmoy Das; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 94719 bytes --] == Series Details == Series: tests/intel/xe_compute_preempt: Extend it for more engines URL : https://patchwork.freedesktop.org/series/130149/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14304_full -> IGTPW_10705_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10705_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10705_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_10705/index.html Participating hosts (8 -> 7) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10705_full: ### IGT changes ### #### Possible regressions #### * igt@kms_color@legacy-gamma@pipe-a: - shard-mtlp: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-mtlp-7/igt@kms_color@legacy-gamma@pipe-a.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-6/igt@kms_color@legacy-gamma@pipe-a.html * igt@kms_cursor_legacy@single-bo@pipe-a: - shard-rkl: [PASS][3] -> [DMESG-WARN][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-rkl-5/igt@kms_cursor_legacy@single-bo@pipe-a.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-7/igt@kms_cursor_legacy@single-bo@pipe-a.html * igt@kms_plane_alpha_blend@constant-alpha-mid: - shard-dg2: NOTRUN -> [INCOMPLETE][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-5/igt@kms_plane_alpha_blend@constant-alpha-mid.html * igt@kms_vblank@query-forked-hang@pipe-c-hdmi-a-2: - shard-glk: [PASS][6] -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-glk4/igt@kms_vblank@query-forked-hang@pipe-c-hdmi-a-2.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-glk1/igt@kms_vblank@query-forked-hang@pipe-c-hdmi-a-2.html Known issues ------------ Here are the changes found in IGTPW_10705_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#7701]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-2/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-check-all@ccs3: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +19 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@drm_fdinfo@busy-check-all@ccs3.html * igt@drm_fdinfo@busy-idle@vcs1: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +4 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-16/igt@drm_fdinfo@busy-idle@vcs1.html * igt@drm_fdinfo@busy-idle@vecs0: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +6 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-3/igt@drm_fdinfo@busy-idle@vecs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: NOTRUN -> [FAIL][12] ([i915#7742]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_basic@multigpu-create-close: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#7697]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-6/igt@gem_basic@multigpu-create-close.html * igt@gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#4873]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-5/igt@gem_caching@reads.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-5/igt@gem_ccs@block-copy-compressed.html * igt@gem_ctx_param@set-priority-not-supported: - shard-mtlp: NOTRUN -> [SKIP][16] ([fdo#109314]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-5/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@engines-cleanup: - shard-snb: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#1099]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-snb1/igt@gem_ctx_persistence@engines-cleanup.html * igt@gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#8555]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-4/igt@gem_ctx_persistence@hang.html - shard-dg2: NOTRUN -> [SKIP][19] ([i915#8555]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-6/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#8555]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html - shard-tglu: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-7/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#4812]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4771]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-6/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#4525]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-4/igt@gem_exec_balancer@parallel.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#6334]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-5/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#6334]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-5/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@many-4k-incremental: - shard-mtlp: NOTRUN -> [FAIL][28] ([i915#9606]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-7/igt@gem_exec_capture@many-4k-incremental.html - shard-dg1: NOTRUN -> [FAIL][29] ([i915#9606]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-18/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [PASS][30] -> [FAIL][31] ([i915#2842]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-rkl-2/igt@gem_exec_fair@basic-none@vcs0.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-4/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-tglu: NOTRUN -> [FAIL][32] ([i915#2842]) +4 other tests fail [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-3/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4473] / [i915#4771]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-8/igt@gem_exec_fair@basic-sync.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-16/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: [PASS][35] -> [FAIL][36] ([i915#2842]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-glk4/igt@gem_exec_fair@basic-throttle@rcs0.html - shard-rkl: NOTRUN -> [FAIL][37] ([i915#2842]) +4 other tests fail [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-7/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4812]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-6/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-6/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_params@secure-non-master: - shard-rkl: NOTRUN -> [SKIP][41] ([fdo#112283]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-7/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3281]) +11 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-6/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-concurrent0: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3281]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-18/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3281]) +4 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#3281]) +6 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4537] / [i915#4812]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-2/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#7276]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-2/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4860]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-2/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4613]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-6/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#4613]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@random-engines: - shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-6/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-random: - shard-glk: NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#4613]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-glk5/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap_gtt@basic-small-bo-tiledx: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) +8 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-3/igt@gem_mmap_gtt@basic-small-bo-tiledx.html * igt@gem_mmap_gtt@close-race: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4077]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-13/igt@gem_mmap_gtt@close-race.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4077]) +17 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4083]) +5 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-8/igt@gem_mmap_wc@bad-offset.html - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-13/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083]) +8 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@gem_mmap_wc@bad-size.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3282]) +6 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3282]) +11 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-random: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#3282]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-17/igt@gem_pwrite@basic-random.html * igt@gem_pxp@create-regular-buffer: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#4270]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-4/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-tglu: NOTRUN -> [SKIP][63] ([i915#4270]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4270]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4270]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-3/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4270]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-17/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-2/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8428]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-5/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4079]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#8411]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4885]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3297]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-2/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#3297]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-2/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3297]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-3/igt@gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3323]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-2/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282] / [i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4880]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@unsync-unmap: - shard-tglu: NOTRUN -> [SKIP][78] ([i915#3297]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-7/igt@gem_userptr_blits@unsync-unmap.html * igt@gen7_exec_parse@basic-offset: - shard-mtlp: NOTRUN -> [SKIP][79] ([fdo#109289]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-8/igt@gen7_exec_parse@basic-offset.html * igt@gen7_exec_parse@basic-rejected: - shard-dg1: NOTRUN -> [SKIP][80] ([fdo#109289]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-19/igt@gen7_exec_parse@basic-rejected.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][81] ([fdo#109289]) +8 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#2527]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#2856]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-5/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-4/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#2856]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-2/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_module_load@load: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#6227]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-4/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][87] -> [INCOMPLETE][88] ([i915#10137] / [i915#9200] / [i915#9849]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][89] -> [INCOMPLETE][90] ([i915#10137] / [i915#9200]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [INCOMPLETE][91] ([i915#10137] / [i915#9820] / [i915#9849]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#6590]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-6/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-dg1: [PASS][93] -> [FAIL][94] ([i915#3591]) +2 other tests fail [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-rkl: NOTRUN -> [SKIP][95] ([fdo#109293] / [fdo#109506]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-2/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#8431]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-8/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#8925]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt0.html - shard-dg2: NOTRUN -> [SKIP][98] ([i915#8925]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park@gt0.html - shard-dg1: NOTRUN -> [SKIP][99] ([i915#8925]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-12/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_rps@thresholds-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#3555] / [i915#8925]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-3/igt@i915_pm_rps@thresholds-park@gt1.html * igt@i915_pm_rps@waitboost: - shard-mtlp: NOTRUN -> [FAIL][101] ([i915#8346]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-2/igt@i915_pm_rps@waitboost.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#4387]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-1/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-known-pci-ids: - shard-dg1: NOTRUN -> [SKIP][103] ([fdo#109303]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-17/igt@i915_query@query-topology-known-pci-ids.html - shard-mtlp: NOTRUN -> [SKIP][104] ([fdo#109303]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-6/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_selftest@mock@memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][105] ([i915#9311]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-7/igt@i915_selftest@mock@memory_region.html - shard-mtlp: NOTRUN -> [DMESG-WARN][106] ([i915#9311]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-4/igt@i915_selftest@mock@memory_region.html * igt@intel_hwmon@hwmon-write: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#7707]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-2/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#4212]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-7/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#4212]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#5190]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4215] / [i915#5190]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_async_flips@invalid-async-flip: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#6228]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-7/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#1769] / [i915#3555]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][114] ([fdo#111615] / [i915#5286]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#5286]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][116] ([fdo#111614]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-3/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][117] ([fdo#111614]) +9 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#3638]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-19/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][119] ([fdo#111615]) +7 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-5/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][120] ([fdo#111614] / [i915#3638]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#5190]) +10 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: [PASS][122] -> [FAIL][123] ([i915#3743]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-6/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-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5190]) +20 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-rkl: NOTRUN -> [SKIP][125] ([fdo#111615]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-dg1: NOTRUN -> [SKIP][126] ([fdo#111615]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-17/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6187]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][128] ([fdo#111615]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][129] ([fdo#110723]) +4 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html - shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_joiner@basic: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#2705]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-3/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@invalid-modeset: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#2705]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-5/igt@kms_big_joiner@invalid-modeset.html - shard-rkl: NOTRUN -> [SKIP][133] ([i915#2705]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-7/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#5354] / [i915#6095]) +10 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#5354] / [i915#6095]) +20 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-1/igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#10282] / [i915#5354]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-4/igt@kms_ccs@pipe-c-bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#5354] / [i915#6095]) +36 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-2/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#5354]) +102 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-5/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@pipe-d-random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#5354] / [i915#6095]) +11 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-17/igt@kms_ccs@pipe-d-random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#5354]) +30 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-1/igt@kms_ccs@pipe-d-random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#7213]) +4 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#4087]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_color@ctm-0-25: - shard-rkl: NOTRUN -> [SKIP][143] ([fdo#111827]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-4/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][144] ([fdo#111827]) +4 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-5/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-negative: - shard-mtlp: NOTRUN -> [SKIP][145] ([fdo#111827]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-3/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#7828]) +8 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#7828]) +8 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#7828]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-10/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#7828]) +5 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#7116] / [i915#9424]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-13/igt@kms_content_protection@atomic.html - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#6944] / [i915#9424]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-8/igt@kms_content_protection@atomic.html * igt@kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#9424]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-1/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3299]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@type1: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#7118] / [i915#9424]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-4/igt@kms_content_protection@type1.html - shard-tglu: NOTRUN -> [SKIP][155] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-2/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#7118] / [i915#9424]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3359]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-dg1: NOTRUN -> [SKIP][158] ([i915#3359]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#3359]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-5/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#8814]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3555]) +10 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#3555] / [i915#8814]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#3359]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3359]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][165] ([fdo#109274] / [i915#5354]) +4 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#9809]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-1/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#4103] / [i915#4213]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#4103]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-tglu: NOTRUN -> [SKIP][169] ([fdo#109274]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][170] ([fdo#109274] / [fdo#111767] / [i915#5354]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html - shard-snb: NOTRUN -> [SKIP][171] ([fdo#109271] / [fdo#111767]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-snb4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#4213]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][173] ([fdo#110189] / [i915#9227]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html - shard-dg1: NOTRUN -> [SKIP][174] ([fdo#110189] / [i915#9723]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-12/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1: - shard-snb: NOTRUN -> [SKIP][175] ([fdo#109271] / [fdo#110189]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-snb7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#9723]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#3555]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-17/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#8812]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-6/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#3840]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3840] / [i915#9688]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][181] ([i915#3840]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-12/igt@kms_dsc@dsc-fractional-bpp.html - shard-tglu: NOTRUN -> [SKIP][182] ([i915#3840]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-3/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#3840]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3840] / [i915#9053]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#4854]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-4/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#1839]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-5/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#9337]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#658]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-2/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3637]) +3 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-2/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html - shard-dg1: NOTRUN -> [SKIP][190] ([fdo#111825] / [i915#9934]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-16/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][191] ([fdo#109274] / [fdo#111767]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][192] ([fdo#111767] / [fdo#111825]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#8381]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-tglu: NOTRUN -> [SKIP][194] ([fdo#109274] / [i915#3637]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-8/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-dg2: NOTRUN -> [SKIP][195] ([fdo#109274]) +5 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-5/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8810]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#2672]) +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][198] ([i915#2587] / [i915#2672]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#2672]) +2 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#2587] / [i915#2672]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#2672]) +4 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#2672] / [i915#3555]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-tglu: NOTRUN -> [SKIP][203] ([fdo#109285]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-9/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#5274]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-7/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-mtlp: [PASS][205] -> [DMESG-WARN][206] ([i915#1982]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#8708]) +7 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][208] ([fdo#111825] / [i915#1825]) +36 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][209] ([fdo#111767] / [i915#1825]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html - shard-dg1: NOTRUN -> [SKIP][210] ([fdo#111767] / [fdo#111825]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-snb: [PASS][211] -> [SKIP][212] ([fdo#109271]) +9 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][213] ([fdo#111825]) +6 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#10055]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#3458]) +2 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][216] ([fdo#110189]) +4 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#8708]) +20 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt: - shard-tglu: NOTRUN -> [SKIP][218] ([fdo#109280]) +8 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][219] ([fdo#111825]) +7 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][220] ([fdo#109271]) +56 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-glk3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#3458]) +25 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#8708]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#1825]) +25 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][224] ([fdo#109280] / [fdo#111767]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][225] ([fdo#111767] / [i915#5354]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][226] ([fdo#111767] / [fdo#111825] / [i915#1825]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#3023]) +21 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8228]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-6/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#8228]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#9457]) +3 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-5/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#6301]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-5/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-rkl: NOTRUN -> [SKIP][232] ([fdo#109289]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-6/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_plane_lowres@tiling-4@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#3582]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-3/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#8821]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-6/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#8806]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#3555]) +7 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-1/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#6953] / [i915#9423]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#9423]) +7 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#9423]) +7 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#5176]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#5235]) +7 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#5235] / [i915#9423]) +7 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#5235]) +6 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#5235]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#5235]) +7 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#9812]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-3/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#9685]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html - shard-dg2: NOTRUN -> [SKIP][249] ([i915#9685]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-6/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#8430]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-17/igt@kms_pm_lpsp@screens-disabled.html - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#8430]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-5/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][252] -> [SKIP][253] ([i915#9519]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#9519]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][255] -> [SKIP][256] ([i915#9519]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#9519]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#9519]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#9519]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][260] ([fdo#109293] / [fdo#109506]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-5/igt@kms_pm_rpm@modeset-pc8-residency-stress.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#6524]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#6524]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-5/igt@kms_prime@basic-modeset-hybrid.html - shard-dg2: NOTRUN -> [SKIP][263] ([i915#6524] / [i915#6805]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#9683]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#9683]) +2 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-5/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][266] ([fdo#111068] / [i915#9683]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_rotation_crc@bad-pixel-format: - shard-snb: NOTRUN -> [SKIP][267] ([fdo#109271]) +68 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-snb6/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#4235]) +3 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-7/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#5289]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#5289]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#4235] / [i915#5190]) +2 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-rkl: NOTRUN -> [SKIP][272] ([fdo#111615] / [i915#5289]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg1: NOTRUN -> [SKIP][273] ([fdo#111615] / [i915#5289]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#4235]) +4 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#8623]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-15/igt@kms_tiled_display@basic-test-pattern.html - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#8623]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-rkl: NOTRUN -> [SKIP][277] ([fdo#109309]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-5/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-mtlp: [PASS][278] -> [FAIL][279] ([i915#9196]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4: - shard-dg1: [PASS][280] -> [FAIL][281] ([i915#9196]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-dg1-17/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-16/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4.html * igt@kms_vrr@flip-dpms: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#3555]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-2/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#2437] / [i915#9412]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#2437]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-7/igt@kms_writeback@writeback-fb-id.html - shard-dg1: NOTRUN -> [SKIP][285] ([i915#2437]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-13/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#2437] / [i915#9412]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#2437]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#2434] / [i915#7387]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-6/igt@perf@mi-rpc.html - shard-rkl: NOTRUN -> [SKIP][289] ([i915#2434]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-5/igt@perf@mi-rpc.html - shard-dg1: NOTRUN -> [SKIP][290] ([i915#2434]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-15/igt@perf@mi-rpc.html - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#2434] / [i915#7387]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-7/igt@perf@mi-rpc.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#2435]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-1/igt@perf@per-context-mode-unprivileged.html - shard-tglu: NOTRUN -> [SKIP][293] ([fdo#109289]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-9/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: [PASS][294] -> [FAIL][295] ([i915#4349]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-mtlp-7/igt@perf_pmu@busy-double-start@ccs0.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-4/igt@perf_pmu@busy-double-start@ccs0.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#8440]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-3/igt@perf_pmu@faulting-read@gtt.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#3291] / [i915#3708]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-10/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#3708]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-6/igt@prime_vgem@fence-write-hang.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][299] ([i915#9781]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][300] ([i915#9779]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-5/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@v3d/v3d_perfmon@create-perfmon-0: - shard-rkl: NOTRUN -> [SKIP][301] ([fdo#109315]) +12 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-1/igt@v3d/v3d_perfmon@create-perfmon-0.html * igt@v3d/v3d_perfmon@create-single-perfmon: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#2575]) +4 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-15/igt@v3d/v3d_perfmon@create-single-perfmon.html * igt@v3d/v3d_perfmon@destroy-valid-perfmon: - shard-tglu: NOTRUN -> [SKIP][303] ([fdo#109315] / [i915#2575]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-5/igt@v3d/v3d_perfmon@destroy-valid-perfmon.html * igt@v3d/v3d_submit_csd@bad-pad: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#2575]) +10 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-6/igt@v3d/v3d_submit_csd@bad-pad.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#2575]) +17 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_perfmon@get-values-valid-perfmon: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#7711]) +6 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-7/igt@vc4/vc4_perfmon@get-values-valid-perfmon.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#7711]) +11 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg2-1/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html * igt@vc4/vc4_tiling@get-bad-flags: - shard-dg1: NOTRUN -> [SKIP][308] ([i915#7711]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-18/igt@vc4/vc4_tiling@get-bad-flags.html * igt@vc4/vc4_tiling@set-get: - shard-tglu: NOTRUN -> [SKIP][309] ([i915#2575]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-9/igt@vc4/vc4_tiling@set-get.html * igt@vc4/vc4_wait_bo@unused-bo-0ns: - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#7711]) +6 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-mtlp-3/igt@vc4/vc4_wait_bo@unused-bo-0ns.html #### Possible fixes #### * igt@drm_fdinfo@virtual-idle: - shard-rkl: [FAIL][311] ([i915#7742]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-rkl-1/igt@drm_fdinfo@virtual-idle.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-4/igt@drm_fdinfo@virtual-idle.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][313] ([i915#5784]) -> [PASS][314] +1 other test pass [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-dg1-16/igt@gem_eio@unwedge-stress.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-12/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][315] ([i915#2842]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][317] ([i915#5493]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-no-display: - shard-snb: [INCOMPLETE][319] ([i915#9849]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-snb4/igt@i915_module_load@reload-no-display.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-snb6/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [ABORT][321] ([i915#9820]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][323] ([i915#10137] / [i915#7790]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-snb1/igt@i915_pm_rps@reset.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-snb4/igt@i915_pm_rps@reset.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][325] ([i915#3743]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][327] ([i915#2346]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-snb: [SKIP][329] ([fdo#109271]) -> [PASS][330] +6 other tests pass [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-snb: [SKIP][331] ([fdo#109271] / [fdo#111767]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][333] ([i915#9519]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [ABORT][335] ([i915#9618]) -> [INCOMPLETE][336] ([i915#10137] / [i915#9408] / [i915#9618]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-tglu: [FAIL][337] ([i915#3591]) -> [WARN][338] ([i915#2681]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-tglu: [WARN][339] ([i915#2681]) -> [FAIL][340] ([i915#3591]) +1 other test fail [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@kms_content_protection@mei-interface: - shard-snb: [INCOMPLETE][341] ([i915#9878]) -> [SKIP][342] ([fdo#109271]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-snb7/igt@kms_content_protection@mei-interface.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-snb2/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-snb: [SKIP][343] ([fdo#109271]) -> [INCOMPLETE][344] ([i915#8816]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-snb1/igt@kms_content_protection@type1.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-snb7/igt@kms_content_protection@type1.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff: - shard-snb: [SKIP][345] ([fdo#109271] / [fdo#111767]) -> [SKIP][346] ([fdo#109271]) +2 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][347] ([i915#4281]) -> [SKIP][348] ([i915#3361]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14304/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10705/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). [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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [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#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#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278 [i915#10282]: https://gitlab.freedesktop.org/drm/intel/issues/10282 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [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#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#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#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#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#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#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#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#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#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8431]: https://gitlab.freedesktop.org/drm/intel/issues/8431 [i915#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440 [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#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [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#9457]: https://gitlab.freedesktop.org/drm/intel/issues/9457 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618 [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#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/intel/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9878]: https://gitlab.freedesktop.org/drm/intel/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7718 -> IGTPW_10705 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_14304: 52e6f4fe13d7b1f498009a367c6ce19466f167cc @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10705: 10705 IGT_7718: 40e8b9122853f455c84afcfa56469a6bc9a0d564 @ 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_10705/index.html [-- Attachment #2: Type: text/html, Size: 117396 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [PATCH i-g-t] tests/intel/xe_compute_preempt: Extend it for more engines 2024-02-20 20:04 [PATCH i-g-t] tests/intel/xe_compute_preempt: Extend it for more engines Nirmoy Das ` (2 preceding siblings ...) 2024-02-21 2:15 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-02-22 6:41 ` Kumar, Janga Rahul 2024-02-23 8:30 ` Nirmoy Das 3 siblings, 1 reply; 6+ messages in thread From: Kumar, Janga Rahul @ 2024-02-22 6:41 UTC (permalink / raw) To: Das, Nirmoy, igt-dev@lists.freedesktop.org > -----Original Message----- > From: Das, Nirmoy <nirmoy.das@intel.com> > Sent: Wednesday, February 21, 2024 1:35 AM > To: igt-dev@lists.freedesktop.org > Cc: Das, Nirmoy <nirmoy.das@intel.com>; Kumar, Janga Rahul > <janga.rahul.kumar@intel.com> > Subject: [PATCH i-g-t] tests/intel/xe_compute_preempt: Extend it for more > engines > > Extend the test to run on all eligible engines. > > Cc: Janga Rahul Kumar <janga.rahul.kumar@intel.com> > Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> LGTM, Reviewed-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Thanks, Rahul > --- > lib/intel_compute.c | 21 +++++++++++++-------- > lib/intel_compute.h | 2 +- > tests/intel/xe_compute_preempt.c | 17 +++++++++++++---- > 3 files changed, 27 insertions(+), 13 deletions(-) > > diff --git a/lib/intel_compute.c b/lib/intel_compute.c index > eab407a0d..c5d253ebc 100644 > --- a/lib/intel_compute.c > +++ b/lib/intel_compute.c > @@ -1526,7 +1526,8 @@ static void xe2lpg_compute_preempt_exec(int fd, > const unsigned char *long_kernel > const unsigned char *short_kernel, > unsigned int short_kernel_size, > const unsigned char *sip_kernel, > - unsigned int sip_kernel_size) > + unsigned int sip_kernel_size, > + struct drm_xe_engine_class_instance > *eci) > { > #define XE2_BO_PREEMPT_DICT_ENTRIES 11 > struct bo_dict_entry bo_dict_long[XE2_BO_PREEMPT_DICT_ENTRIES] = > { @@ -1578,8 +1579,8 @@ static void xe2lpg_compute_preempt_exec(int fd, > const unsigned char *long_kernel > for (int i = 0; i < XE2_BO_PREEMPT_DICT_ENTRIES; ++i) > bo_dict_short[i] = bo_dict_long[i]; > > - bo_execenv_create(fd, &execenv_short, NULL); > - bo_execenv_create(fd, &execenv_long, NULL); > + bo_execenv_create(fd, &execenv_short, eci); > + bo_execenv_create(fd, &execenv_long, eci); > > bo_dict_long[0].size = ALIGN(long_kernel_size, 0x1000); > bo_dict_short[0].size = ALIGN(short_kernel_size, 0x1000); @@ -1673,7 > +1674,8 @@ static const struct { > const unsigned char *short_kernel, > unsigned int short_kernel_size, > const unsigned char *sip_kernel, > - unsigned int sip_kernel_size); > + unsigned int sip_kernel_size, > + struct drm_xe_engine_class_instance *eci); > uint32_t compat; > } intel_compute_preempt_batches[] = { > { > @@ -1683,7 +1685,8 @@ static const struct { > }, > }; > > -static bool __run_intel_compute_kernel_preempt(int fd) > +static bool __run_intel_compute_kernel_preempt(int fd, > + struct drm_xe_engine_class_instance *eci) > { > unsigned int ip_ver = intel_graphics_ver(intel_get_drm_devid(fd)); > unsigned int batch; > @@ -1720,7 +1723,8 @@ static bool __run_intel_compute_kernel_preempt(int > fd) > kernels- > >long_kernel_size, > kernels->kernel, > kernels->size, > kernels->sip_kernel, > - kernels- > >sip_kernel_size); > + kernels- > >sip_kernel_size, > + eci); > > return true; > } > @@ -1732,7 +1736,8 @@ static bool __run_intel_compute_kernel_preempt(int > fd) > * > * Returns true on success, false otherwise. > */ > -bool run_intel_compute_kernel_preempt(int fd) > +bool run_intel_compute_kernel_preempt(int fd, > + struct drm_xe_engine_class_instance *eci) > { > - return __run_intel_compute_kernel_preempt(fd); > + return __run_intel_compute_kernel_preempt(fd, eci); > } > diff --git a/lib/intel_compute.h b/lib/intel_compute.h index > a02688ad4..fe9637b91 100644 > --- a/lib/intel_compute.h > +++ b/lib/intel_compute.h > @@ -37,5 +37,5 @@ extern const struct intel_compute_kernels > intel_compute_square_kernels[]; > > bool run_intel_compute_kernel(int fd); > bool xe_run_intel_compute_kernel_on_engine(int fd, struct > drm_xe_engine_class_instance *eci); -bool > run_intel_compute_kernel_preempt(int fd); > +bool run_intel_compute_kernel_preempt(int fd, struct > +drm_xe_engine_class_instance *eci); > #endif /* INTEL_COMPUTE_H */ > diff --git a/tests/intel/xe_compute_preempt.c > b/tests/intel/xe_compute_preempt.c > index 31703638e..a4e0e1454 100644 > --- a/tests/intel/xe_compute_preempt.c > +++ b/tests/intel/xe_compute_preempt.c > @@ -24,20 +24,29 @@ > * Functionality: compute openCL kernel > */ > static void > -test_compute_preempt(int fd) > +test_compute_preempt(int fd, struct drm_xe_engine_class_instance *hwe) > { > - igt_require_f(run_intel_compute_kernel_preempt(fd), "GPU not > supported\n"); > + igt_require_f(run_intel_compute_kernel_preempt(fd, hwe), "GPU not > +supported\n"); > } > > igt_main > { > int xe; > + struct drm_xe_engine_class_instance *hwe; > > igt_fixture > xe = drm_open_driver(DRIVER_XE); > > - igt_subtest("compute-preempt") > - test_compute_preempt(xe); > + igt_subtest_with_dynamic("compute-preempt") { > + xe_for_each_engine(xe, hwe) { > + if (hwe->engine_class != > DRM_XE_ENGINE_CLASS_COMPUTE && > + hwe->engine_class != > DRM_XE_ENGINE_CLASS_RENDER) > + continue; > + > + igt_dynamic_f("engine-%s", > xe_engine_class_string(hwe->engine_class)) > + test_compute_preempt(xe, hwe); > + } > + } > > igt_fixture > drm_close_driver(xe); > -- > 2.42.0 ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] tests/intel/xe_compute_preempt: Extend it for more engines 2024-02-22 6:41 ` [PATCH i-g-t] " Kumar, Janga Rahul @ 2024-02-23 8:30 ` Nirmoy Das 0 siblings, 0 replies; 6+ messages in thread From: Nirmoy Das @ 2024-02-23 8:30 UTC (permalink / raw) To: Kumar, Janga Rahul, Das, Nirmoy, igt-dev@lists.freedesktop.org On 2/22/2024 7:41 AM, Kumar, Janga Rahul wrote: > >> -----Original Message----- >> From: Das, Nirmoy <nirmoy.das@intel.com> >> Sent: Wednesday, February 21, 2024 1:35 AM >> To: igt-dev@lists.freedesktop.org >> Cc: Das, Nirmoy <nirmoy.das@intel.com>; Kumar, Janga Rahul >> <janga.rahul.kumar@intel.com> >> Subject: [PATCH i-g-t] tests/intel/xe_compute_preempt: Extend it for more >> engines >> >> Extend the test to run on all eligible engines. >> >> Cc: Janga Rahul Kumar <janga.rahul.kumar@intel.com> >> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> > LGTM, > Reviewed-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Thanks, merged! > > Thanks, > Rahul >> --- >> lib/intel_compute.c | 21 +++++++++++++-------- >> lib/intel_compute.h | 2 +- >> tests/intel/xe_compute_preempt.c | 17 +++++++++++++---- >> 3 files changed, 27 insertions(+), 13 deletions(-) >> >> diff --git a/lib/intel_compute.c b/lib/intel_compute.c index >> eab407a0d..c5d253ebc 100644 >> --- a/lib/intel_compute.c >> +++ b/lib/intel_compute.c >> @@ -1526,7 +1526,8 @@ static void xe2lpg_compute_preempt_exec(int fd, >> const unsigned char *long_kernel >> const unsigned char *short_kernel, >> unsigned int short_kernel_size, >> const unsigned char *sip_kernel, >> - unsigned int sip_kernel_size) >> + unsigned int sip_kernel_size, >> + struct drm_xe_engine_class_instance >> *eci) >> { >> #define XE2_BO_PREEMPT_DICT_ENTRIES 11 >> struct bo_dict_entry bo_dict_long[XE2_BO_PREEMPT_DICT_ENTRIES] = >> { @@ -1578,8 +1579,8 @@ static void xe2lpg_compute_preempt_exec(int fd, >> const unsigned char *long_kernel >> for (int i = 0; i < XE2_BO_PREEMPT_DICT_ENTRIES; ++i) >> bo_dict_short[i] = bo_dict_long[i]; >> >> - bo_execenv_create(fd, &execenv_short, NULL); >> - bo_execenv_create(fd, &execenv_long, NULL); >> + bo_execenv_create(fd, &execenv_short, eci); >> + bo_execenv_create(fd, &execenv_long, eci); >> >> bo_dict_long[0].size = ALIGN(long_kernel_size, 0x1000); >> bo_dict_short[0].size = ALIGN(short_kernel_size, 0x1000); @@ -1673,7 >> +1674,8 @@ static const struct { >> const unsigned char *short_kernel, >> unsigned int short_kernel_size, >> const unsigned char *sip_kernel, >> - unsigned int sip_kernel_size); >> + unsigned int sip_kernel_size, >> + struct drm_xe_engine_class_instance *eci); >> uint32_t compat; >> } intel_compute_preempt_batches[] = { >> { >> @@ -1683,7 +1685,8 @@ static const struct { >> }, >> }; >> >> -static bool __run_intel_compute_kernel_preempt(int fd) >> +static bool __run_intel_compute_kernel_preempt(int fd, >> + struct drm_xe_engine_class_instance *eci) >> { >> unsigned int ip_ver = intel_graphics_ver(intel_get_drm_devid(fd)); >> unsigned int batch; >> @@ -1720,7 +1723,8 @@ static bool __run_intel_compute_kernel_preempt(int >> fd) >> kernels- >>> long_kernel_size, >> kernels->kernel, >> kernels->size, >> kernels->sip_kernel, >> - kernels- >>> sip_kernel_size); >> + kernels- >>> sip_kernel_size, >> + eci); >> >> return true; >> } >> @@ -1732,7 +1736,8 @@ static bool __run_intel_compute_kernel_preempt(int >> fd) >> * >> * Returns true on success, false otherwise. >> */ >> -bool run_intel_compute_kernel_preempt(int fd) >> +bool run_intel_compute_kernel_preempt(int fd, >> + struct drm_xe_engine_class_instance *eci) >> { >> - return __run_intel_compute_kernel_preempt(fd); >> + return __run_intel_compute_kernel_preempt(fd, eci); >> } >> diff --git a/lib/intel_compute.h b/lib/intel_compute.h index >> a02688ad4..fe9637b91 100644 >> --- a/lib/intel_compute.h >> +++ b/lib/intel_compute.h >> @@ -37,5 +37,5 @@ extern const struct intel_compute_kernels >> intel_compute_square_kernels[]; >> >> bool run_intel_compute_kernel(int fd); >> bool xe_run_intel_compute_kernel_on_engine(int fd, struct >> drm_xe_engine_class_instance *eci); -bool >> run_intel_compute_kernel_preempt(int fd); >> +bool run_intel_compute_kernel_preempt(int fd, struct >> +drm_xe_engine_class_instance *eci); >> #endif /* INTEL_COMPUTE_H */ >> diff --git a/tests/intel/xe_compute_preempt.c >> b/tests/intel/xe_compute_preempt.c >> index 31703638e..a4e0e1454 100644 >> --- a/tests/intel/xe_compute_preempt.c >> +++ b/tests/intel/xe_compute_preempt.c >> @@ -24,20 +24,29 @@ >> * Functionality: compute openCL kernel >> */ >> static void >> -test_compute_preempt(int fd) >> +test_compute_preempt(int fd, struct drm_xe_engine_class_instance *hwe) >> { >> - igt_require_f(run_intel_compute_kernel_preempt(fd), "GPU not >> supported\n"); >> + igt_require_f(run_intel_compute_kernel_preempt(fd, hwe), "GPU not >> +supported\n"); >> } >> >> igt_main >> { >> int xe; >> + struct drm_xe_engine_class_instance *hwe; >> >> igt_fixture >> xe = drm_open_driver(DRIVER_XE); >> >> - igt_subtest("compute-preempt") >> - test_compute_preempt(xe); >> + igt_subtest_with_dynamic("compute-preempt") { >> + xe_for_each_engine(xe, hwe) { >> + if (hwe->engine_class != >> DRM_XE_ENGINE_CLASS_COMPUTE && >> + hwe->engine_class != >> DRM_XE_ENGINE_CLASS_RENDER) >> + continue; >> + >> + igt_dynamic_f("engine-%s", >> xe_engine_class_string(hwe->engine_class)) >> + test_compute_preempt(xe, hwe); >> + } >> + } >> >> igt_fixture >> drm_close_driver(xe); >> -- >> 2.42.0 ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-02-23 8:31 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-02-20 20:04 [PATCH i-g-t] tests/intel/xe_compute_preempt: Extend it for more engines Nirmoy Das 2024-02-20 23:12 ` ✓ CI.xeBAT: success for " Patchwork 2024-02-20 23:43 ` ✓ Fi.CI.BAT: " Patchwork 2024-02-21 2:15 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-02-22 6:41 ` [PATCH i-g-t] " Kumar, Janga Rahul 2024-02-23 8:30 ` Nirmoy Das
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox