* [igt-dev] [PATCH i-g-t 0/4] Ignore some tests on MTL which
@ 2023-09-18 16:47 Nirmoy Das
2023-09-18 16:47 ` [igt-dev] [PATCH i-g-t 1/4] lib/igt_gt: Add gem_engine_can_block_ggtt_binder Nirmoy Das
` (8 more replies)
0 siblings, 9 replies; 16+ messages in thread
From: Nirmoy Das @ 2023-09-18 16:47 UTC (permalink / raw)
To: igt-dev; +Cc: andi.shyti, oak.zeng, Nirmoy Das
Because of a HW bug in MTL it is recommended to do GGTT
update using MI_UPDATE_GGTT[1] which happens through BCS0
engine. If some test blocks bcs with a spinner then such
tests will fail. This series ignore those tests on MTL.
v2: use macro,
s/gem_has_ggtt_bind/gem_engine_can_block_ggtt_binder(Kamil)
v3: Skip gem_ctx_schedule@in-order@bcs as well.
Add two more tests in gem_spin_batch as hinted by the latest
results from the i915 CI.
[1]https://patchwork.freedesktop.org/series/123329/
Nirmoy Das (4):
lib/igt_gt: Add gem_engine_can_block_ggtt_binder
tests/intel/gem_ctx_shared: Skip some test on MTL
tests/intel/gem_ctx_schedule: Skip some test on MTL
tests/intel/gem_spin_batch: Skip some test on MTL
lib/igt_gt.c | 15 +++++++++++++
lib/igt_gt.h | 2 ++
tests/intel/gem_ctx_shared.c | 14 ++++++++----
tests/intel/gem_exec_schedule.c | 39 +++++++++++++++++++--------------
tests/intel/gem_spin_batch.c | 3 +++
5 files changed, 53 insertions(+), 20 deletions(-)
--
2.41.0
^ permalink raw reply [flat|nested] 16+ messages in thread* [igt-dev] [PATCH i-g-t 1/4] lib/igt_gt: Add gem_engine_can_block_ggtt_binder 2023-09-18 16:47 [igt-dev] [PATCH i-g-t 0/4] Ignore some tests on MTL which Nirmoy Das @ 2023-09-18 16:47 ` Nirmoy Das 2023-09-18 16:47 ` [igt-dev] [PATCH i-g-t 2/4] tests/intel/gem_ctx_shared: Skip some test on MTL Nirmoy Das ` (7 subsequent siblings) 8 siblings, 0 replies; 16+ messages in thread From: Nirmoy Das @ 2023-09-18 16:47 UTC (permalink / raw) To: igt-dev; +Cc: andi.shyti, oak.zeng, Nirmoy Das On MTL GGTT updates happens through MI_UPDATE_GGTT command. Add a method to detect if a engine can block ggtt binder. Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> --- lib/igt_gt.c | 15 +++++++++++++++ lib/igt_gt.h | 2 ++ 2 files changed, 17 insertions(+) diff --git a/lib/igt_gt.c b/lib/igt_gt.c index a24a566c7..aa5e75b07 100644 --- a/lib/igt_gt.c +++ b/lib/igt_gt.c @@ -659,3 +659,18 @@ int gem_execbuf_flags_to_engine_class(unsigned int flags) igt_assert(0); } } + +/** + * gem_engine_can_block_ggtt_binder: + * @fd: open i915 drm file descriptor + * @engine: engine to be assessed + * + * Detect if the platform needs blitter based GGTT + * updates. + */ +bool gem_engine_can_block_ggtt_binder(int fd, + const struct intel_execution_engine2 *engine) +{ + return IS_METEORLAKE(intel_get_drm_devid(fd)) && + engine->class == I915_ENGINE_CLASS_COPY; +} diff --git a/lib/igt_gt.h b/lib/igt_gt.h index 3d10349e4..d0c5510b1 100644 --- a/lib/igt_gt.h +++ b/lib/igt_gt.h @@ -83,5 +83,7 @@ extern const struct intel_execution_engine2 { } intel_execution_engines2[]; int gem_execbuf_flags_to_engine_class(unsigned int flags); +bool gem_engine_can_block_ggtt_binder(int fd, + const struct intel_execution_engine2 *engine); #endif /* IGT_GT_H */ -- 2.41.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* [igt-dev] [PATCH i-g-t 2/4] tests/intel/gem_ctx_shared: Skip some test on MTL 2023-09-18 16:47 [igt-dev] [PATCH i-g-t 0/4] Ignore some tests on MTL which Nirmoy Das 2023-09-18 16:47 ` [igt-dev] [PATCH i-g-t 1/4] lib/igt_gt: Add gem_engine_can_block_ggtt_binder Nirmoy Das @ 2023-09-18 16:47 ` Nirmoy Das 2023-09-18 16:47 ` [igt-dev] [PATCH i-g-t 3/4] tests/intel/gem_ctx_schedule: " Nirmoy Das ` (6 subsequent siblings) 8 siblings, 0 replies; 16+ messages in thread From: Nirmoy Das @ 2023-09-18 16:47 UTC (permalink / raw) To: igt-dev; +Cc: andi.shyti, oak.zeng, Nirmoy Das We do GGTT update on MTL using bcs engine, blocking that would fail the test so skip such subtests on bcs engine for MTL. Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> --- tests/intel/gem_ctx_shared.c | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/tests/intel/gem_ctx_shared.c b/tests/intel/gem_ctx_shared.c index d24ae5483..fd429306e 100644 --- a/tests/intel/gem_ctx_shared.c +++ b/tests/intel/gem_ctx_shared.c @@ -1047,6 +1047,12 @@ static void smoketest(int i915, const intel_ctx_cfg_t *cfg, for_each_if(gem_class_can_store_dword(i915, (e)->class)) \ igt_dynamic_f("%s", e->name) +#define for_each_nonblocking_ggtt_binder_queue(e, i915, cfg) \ + for_each_ctx_cfg_engine(i915, cfg, e) \ + for_each_if(gem_class_can_store_dword(i915, (e)->class) && \ + !gem_engine_can_block_ggtt_binder(i915, e)) \ + igt_dynamic_f("%s", e->name) + igt_main { const struct intel_execution_engine2 *e; @@ -1104,22 +1110,22 @@ igt_main } igt_subtest_with_dynamic("Q-independent") { - for_each_queue(e, i915, &cfg) + for_each_nonblocking_ggtt_binder_queue(e, i915, &cfg) independent(i915, &cfg, e, 0); } igt_subtest_with_dynamic("Q-in-order") { - for_each_queue(e, i915, &cfg) + for_each_nonblocking_ggtt_binder_queue(e, i915, &cfg) reorder(i915, &cfg, e->flags, EQUAL); } igt_subtest_with_dynamic("Q-out-order") { - for_each_queue(e, i915, &cfg) + for_each_nonblocking_ggtt_binder_queue(e, i915, &cfg) reorder(i915, &cfg, e->flags, 0); } igt_subtest_with_dynamic("Q-promotion") { - for_each_queue(e, i915, &cfg) + for_each_nonblocking_ggtt_binder_queue(e, i915, &cfg) promotion(i915, &cfg, e->flags); } } -- 2.41.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* [igt-dev] [PATCH i-g-t 3/4] tests/intel/gem_ctx_schedule: Skip some test on MTL 2023-09-18 16:47 [igt-dev] [PATCH i-g-t 0/4] Ignore some tests on MTL which Nirmoy Das 2023-09-18 16:47 ` [igt-dev] [PATCH i-g-t 1/4] lib/igt_gt: Add gem_engine_can_block_ggtt_binder Nirmoy Das 2023-09-18 16:47 ` [igt-dev] [PATCH i-g-t 2/4] tests/intel/gem_ctx_shared: Skip some test on MTL Nirmoy Das @ 2023-09-18 16:47 ` Nirmoy Das 2023-09-18 17:00 ` Nirmoy Das 2023-09-18 16:47 ` [igt-dev] [PATCH i-g-t 4/4] tests/intel/gem_spin_batch: " Nirmoy Das ` (5 subsequent siblings) 8 siblings, 1 reply; 16+ messages in thread From: Nirmoy Das @ 2023-09-18 16:47 UTC (permalink / raw) To: igt-dev; +Cc: andi.shyti, oak.zeng, Nirmoy Das We do GGTT update on MTL using bcs engine, blocking that would fail the test so skip such subtests on bcs engine for MTL. Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> --- tests/intel/gem_exec_schedule.c | 39 +++++++++++++++++++-------------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/tests/intel/gem_exec_schedule.c b/tests/intel/gem_exec_schedule.c index c94988d36..183ee1a21 100644 --- a/tests/intel/gem_exec_schedule.c +++ b/tests/intel/gem_exec_schedule.c @@ -3479,6 +3479,12 @@ static void fairslice(int i915, const intel_ctx_cfg_t *cfg, for_each_if(gem_class_can_store_dword(fd, e->class)) \ igt_dynamic_f("%s", e->name) +#define test_each_ggtt_binder_nonblocking_engine(T, i915, ctx, e) \ + igt_subtest_with_dynamic(T) for_each_ctx_engine(i915, ctx, e) \ + for_each_if(gem_class_can_store_dword(fd, e->class) && \ + !gem_engine_can_block_ggtt_binder(i915, e)) \ + igt_dynamic_f("%s", e->name) + igt_main { int fd = -1; @@ -3502,21 +3508,22 @@ igt_main igt_subtest_group { const struct intel_execution_engine2 *e; - test_each_engine_store("fifo", fd, ctx, e) + test_each_ggtt_binder_nonblocking_engine("fifo", fd, ctx, e) fifo(fd, ctx, e->flags); - test_each_engine_store("implicit-read-write", fd, ctx, e) + test_each_ggtt_binder_nonblocking_engine("implicit-read-write", fd, ctx, e) implicit_rw(fd, ctx, e->flags, READ_WRITE); - test_each_engine_store("implicit-write-read", fd, ctx, e) + test_each_ggtt_binder_nonblocking_engine("implicit-write-read", fd, ctx, e) implicit_rw(fd, ctx, e->flags, WRITE_READ); - test_each_engine_store("implicit-boths", fd, ctx, e) + test_each_ggtt_binder_nonblocking_engine("implicit-boths", fd, ctx, e) implicit_rw(fd, ctx, e->flags, READ_WRITE | WRITE_READ); - test_each_engine_store("independent", fd, ctx, e) + test_each_ggtt_binder_nonblocking_engine("independent", fd, ctx, e) independent(fd, ctx, e->flags, 0); - test_each_engine_store("u-independent", fd, ctx, e) + + test_each_ggtt_binder_nonblocking_engine("u-independent", fd, ctx, e) independent(fd, ctx, e->flags, IGT_SPIN_USERPTR); } @@ -3612,13 +3619,13 @@ igt_main igt_subtest("smoketest-all") smoketest(fd, &ctx->cfg, ALL_ENGINES, 30); - test_each_engine_store("in-order", fd, ctx, e) + test_each_ggtt_binder_nonblocking_engine("in-order", fd, ctx, e) reorder(fd, &ctx->cfg, e->flags, EQUAL); - test_each_engine_store("out-order", fd, ctx, e) + test_each_ggtt_binder_nonblocking_engine("out-order", fd, ctx, e) reorder(fd, &ctx->cfg, e->flags, 0); - test_each_engine_store("promotion", fd, ctx, e) + test_each_ggtt_binder_nonblocking_engine("promotion", fd, ctx, e) promotion(fd, &ctx->cfg, e->flags); igt_subtest_group { @@ -3685,23 +3692,23 @@ igt_main } } - test_each_engine_store("noreorder", fd, ctx, e) + test_each_ggtt_binder_nonblocking_engine("noreorder", fd, ctx, e) noreorder(fd, &ctx->cfg, e->flags, 0, 0); - test_each_engine_store("noreorder-priority", fd, ctx, e) { + test_each_ggtt_binder_nonblocking_engine("noreorder-priority", fd, ctx, e) { igt_require(gem_scheduler_enabled(fd)); noreorder(fd, &ctx->cfg, e->flags, MAX_PRIO, 0); } - test_each_engine_store("noreorder-corked", fd, ctx, e) { + test_each_ggtt_binder_nonblocking_engine("noreorder-corked", fd, ctx, e) { igt_require(gem_scheduler_enabled(fd)); noreorder(fd, &ctx->cfg, e->flags, MAX_PRIO, CORKED); } - test_each_engine_store("deep", fd, ctx, e) + test_each_ggtt_binder_nonblocking_engine("deep", fd, ctx, e) deep(fd, &ctx->cfg, e->flags); - test_each_engine_store("wide", fd, ctx, e) + test_each_ggtt_binder_nonblocking_engine("wide", fd, ctx, e) wide(fd, &ctx->cfg, e->flags); test_each_engine_store("smoketest", fd, ctx, e) @@ -3735,10 +3742,10 @@ igt_main test_each_engine("pi-userfault", fd, ctx, e) test_pi_userfault(fd, &ctx->cfg, e->flags); - test_each_engine("pi-distinct-iova", fd, ctx, e) + test_each_ggtt_binder_nonblocking_engine("pi-distinct-iova", fd, ctx, e) test_pi_iova(fd, &ctx->cfg, e->flags, 0); - test_each_engine("pi-shared-iova", fd, ctx, e) + test_each_ggtt_binder_nonblocking_engine("pi-shared-iova", fd, ctx, e) test_pi_iova(fd, &ctx->cfg, e->flags, SHARED); } -- 2.41.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 3/4] tests/intel/gem_ctx_schedule: Skip some test on MTL 2023-09-18 16:47 ` [igt-dev] [PATCH i-g-t 3/4] tests/intel/gem_ctx_schedule: " Nirmoy Das @ 2023-09-18 17:00 ` Nirmoy Das 2023-09-19 10:20 ` Kamil Konieczny 0 siblings, 1 reply; 16+ messages in thread From: Nirmoy Das @ 2023-09-18 17:00 UTC (permalink / raw) To: Nirmoy Das, igt-dev, Kamil Konieczny; +Cc: andi.shyti, oak.zeng Hi Kamil, Updated the patch by adding "in-order" test and kept your rb. Hope you are ok with that. Regards, Nirmoy On 9/18/2023 6:47 PM, Nirmoy Das wrote: > We do GGTT update on MTL using bcs engine, blocking that would > fail the test so skip such subtests on bcs engine for MTL. > > Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > tests/intel/gem_exec_schedule.c | 39 +++++++++++++++++++-------------- > 1 file changed, 23 insertions(+), 16 deletions(-) > > diff --git a/tests/intel/gem_exec_schedule.c b/tests/intel/gem_exec_schedule.c > index c94988d36..183ee1a21 100644 > --- a/tests/intel/gem_exec_schedule.c > +++ b/tests/intel/gem_exec_schedule.c > @@ -3479,6 +3479,12 @@ static void fairslice(int i915, const intel_ctx_cfg_t *cfg, > for_each_if(gem_class_can_store_dword(fd, e->class)) \ > igt_dynamic_f("%s", e->name) > > +#define test_each_ggtt_binder_nonblocking_engine(T, i915, ctx, e) \ > + igt_subtest_with_dynamic(T) for_each_ctx_engine(i915, ctx, e) \ > + for_each_if(gem_class_can_store_dword(fd, e->class) && \ > + !gem_engine_can_block_ggtt_binder(i915, e)) \ > + igt_dynamic_f("%s", e->name) > + > igt_main > { > int fd = -1; > @@ -3502,21 +3508,22 @@ igt_main > igt_subtest_group { > const struct intel_execution_engine2 *e; > > - test_each_engine_store("fifo", fd, ctx, e) > + test_each_ggtt_binder_nonblocking_engine("fifo", fd, ctx, e) > fifo(fd, ctx, e->flags); > > - test_each_engine_store("implicit-read-write", fd, ctx, e) > + test_each_ggtt_binder_nonblocking_engine("implicit-read-write", fd, ctx, e) > implicit_rw(fd, ctx, e->flags, READ_WRITE); > > - test_each_engine_store("implicit-write-read", fd, ctx, e) > + test_each_ggtt_binder_nonblocking_engine("implicit-write-read", fd, ctx, e) > implicit_rw(fd, ctx, e->flags, WRITE_READ); > > - test_each_engine_store("implicit-boths", fd, ctx, e) > + test_each_ggtt_binder_nonblocking_engine("implicit-boths", fd, ctx, e) > implicit_rw(fd, ctx, e->flags, READ_WRITE | WRITE_READ); > > - test_each_engine_store("independent", fd, ctx, e) > + test_each_ggtt_binder_nonblocking_engine("independent", fd, ctx, e) > independent(fd, ctx, e->flags, 0); > - test_each_engine_store("u-independent", fd, ctx, e) > + > + test_each_ggtt_binder_nonblocking_engine("u-independent", fd, ctx, e) > independent(fd, ctx, e->flags, IGT_SPIN_USERPTR); > } > > @@ -3612,13 +3619,13 @@ igt_main > igt_subtest("smoketest-all") > smoketest(fd, &ctx->cfg, ALL_ENGINES, 30); > > - test_each_engine_store("in-order", fd, ctx, e) > + test_each_ggtt_binder_nonblocking_engine("in-order", fd, ctx, e) > reorder(fd, &ctx->cfg, e->flags, EQUAL); > > - test_each_engine_store("out-order", fd, ctx, e) > + test_each_ggtt_binder_nonblocking_engine("out-order", fd, ctx, e) > reorder(fd, &ctx->cfg, e->flags, 0); > > - test_each_engine_store("promotion", fd, ctx, e) > + test_each_ggtt_binder_nonblocking_engine("promotion", fd, ctx, e) > promotion(fd, &ctx->cfg, e->flags); > > igt_subtest_group { > @@ -3685,23 +3692,23 @@ igt_main > } > } > > - test_each_engine_store("noreorder", fd, ctx, e) > + test_each_ggtt_binder_nonblocking_engine("noreorder", fd, ctx, e) > noreorder(fd, &ctx->cfg, e->flags, 0, 0); > > - test_each_engine_store("noreorder-priority", fd, ctx, e) { > + test_each_ggtt_binder_nonblocking_engine("noreorder-priority", fd, ctx, e) { > igt_require(gem_scheduler_enabled(fd)); > noreorder(fd, &ctx->cfg, e->flags, MAX_PRIO, 0); > } > > - test_each_engine_store("noreorder-corked", fd, ctx, e) { > + test_each_ggtt_binder_nonblocking_engine("noreorder-corked", fd, ctx, e) { > igt_require(gem_scheduler_enabled(fd)); > noreorder(fd, &ctx->cfg, e->flags, MAX_PRIO, CORKED); > } > > - test_each_engine_store("deep", fd, ctx, e) > + test_each_ggtt_binder_nonblocking_engine("deep", fd, ctx, e) > deep(fd, &ctx->cfg, e->flags); > > - test_each_engine_store("wide", fd, ctx, e) > + test_each_ggtt_binder_nonblocking_engine("wide", fd, ctx, e) > wide(fd, &ctx->cfg, e->flags); > > test_each_engine_store("smoketest", fd, ctx, e) > @@ -3735,10 +3742,10 @@ igt_main > test_each_engine("pi-userfault", fd, ctx, e) > test_pi_userfault(fd, &ctx->cfg, e->flags); > > - test_each_engine("pi-distinct-iova", fd, ctx, e) > + test_each_ggtt_binder_nonblocking_engine("pi-distinct-iova", fd, ctx, e) > test_pi_iova(fd, &ctx->cfg, e->flags, 0); > > - test_each_engine("pi-shared-iova", fd, ctx, e) > + test_each_ggtt_binder_nonblocking_engine("pi-shared-iova", fd, ctx, e) > test_pi_iova(fd, &ctx->cfg, e->flags, SHARED); > } > ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 3/4] tests/intel/gem_ctx_schedule: Skip some test on MTL 2023-09-18 17:00 ` Nirmoy Das @ 2023-09-19 10:20 ` Kamil Konieczny 2023-09-19 14:17 ` Nirmoy Das 0 siblings, 1 reply; 16+ messages in thread From: Kamil Konieczny @ 2023-09-19 10:20 UTC (permalink / raw) To: igt-dev; +Cc: andi.shyti, oak.zeng, Nirmoy Das Hi Nirmoy, On 2023-09-18 at 19:00:52 +0200, Nirmoy Das wrote: > Hi Kamil, > > > Updated the patch by adding "in-order" test and kept your rb. Hope you are > ok with that. > No problem but as you make corrections maybe one more about style? See below. > > Regards, > > Nirmoy > > On 9/18/2023 6:47 PM, Nirmoy Das wrote: > > We do GGTT update on MTL using bcs engine, blocking that would > > fail the test so skip such subtests on bcs engine for MTL. > > > > Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> > > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > --- > > tests/intel/gem_exec_schedule.c | 39 +++++++++++++++++++-------------- > > 1 file changed, 23 insertions(+), 16 deletions(-) > > > > diff --git a/tests/intel/gem_exec_schedule.c b/tests/intel/gem_exec_schedule.c > > index c94988d36..183ee1a21 100644 > > --- a/tests/intel/gem_exec_schedule.c > > +++ b/tests/intel/gem_exec_schedule.c > > @@ -3479,6 +3479,12 @@ static void fairslice(int i915, const intel_ctx_cfg_t *cfg, > > for_each_if(gem_class_can_store_dword(fd, e->class)) \ > > igt_dynamic_f("%s", e->name) > > +#define test_each_ggtt_binder_nonblocking_engine(T, i915, ctx, e) \ > > + igt_subtest_with_dynamic(T) for_each_ctx_engine(i915, ctx, e) \ > > + for_each_if(gem_class_can_store_dword(fd, e->class) && \ > > + !gem_engine_can_block_ggtt_binder(i915, e)) \ > > + igt_dynamic_f("%s", e->name) > > + > > igt_main > > { > > int fd = -1; > > @@ -3502,21 +3508,22 @@ igt_main > > igt_subtest_group { > > const struct intel_execution_engine2 *e; Here should be newline, if you add it mension this in description. > > - test_each_engine_store("fifo", fd, ctx, e) > > + test_each_ggtt_binder_nonblocking_engine("fifo", fd, ctx, e) > > fifo(fd, ctx, e->flags); > > - test_each_engine_store("implicit-read-write", fd, ctx, e) > > + test_each_ggtt_binder_nonblocking_engine("implicit-read-write", fd, ctx, e) > > implicit_rw(fd, ctx, e->flags, READ_WRITE); > > - test_each_engine_store("implicit-write-read", fd, ctx, e) > > + test_each_ggtt_binder_nonblocking_engine("implicit-write-read", fd, ctx, e) > > implicit_rw(fd, ctx, e->flags, WRITE_READ); > > - test_each_engine_store("implicit-boths", fd, ctx, e) > > + test_each_ggtt_binder_nonblocking_engine("implicit-boths", fd, ctx, e) > > implicit_rw(fd, ctx, e->flags, READ_WRITE | WRITE_READ); > > - test_each_engine_store("independent", fd, ctx, e) > > + test_each_ggtt_binder_nonblocking_engine("independent", fd, ctx, e) > > independent(fd, ctx, e->flags, 0); > > - test_each_engine_store("u-independent", fd, ctx, e) > > + This newline break style, either add newline after every subtest or do not add new ones. In conclusion: I would prefer this newline to be deleted. You may go with this in separate patch if you want. Regards, Kamil > > + test_each_ggtt_binder_nonblocking_engine("u-independent", fd, ctx, e) > > independent(fd, ctx, e->flags, IGT_SPIN_USERPTR); > > } > > @@ -3612,13 +3619,13 @@ igt_main > > igt_subtest("smoketest-all") > > smoketest(fd, &ctx->cfg, ALL_ENGINES, 30); > > - test_each_engine_store("in-order", fd, ctx, e) > > + test_each_ggtt_binder_nonblocking_engine("in-order", fd, ctx, e) > > reorder(fd, &ctx->cfg, e->flags, EQUAL); > > - test_each_engine_store("out-order", fd, ctx, e) > > + test_each_ggtt_binder_nonblocking_engine("out-order", fd, ctx, e) > > reorder(fd, &ctx->cfg, e->flags, 0); > > - test_each_engine_store("promotion", fd, ctx, e) > > + test_each_ggtt_binder_nonblocking_engine("promotion", fd, ctx, e) > > promotion(fd, &ctx->cfg, e->flags); > > igt_subtest_group { > > @@ -3685,23 +3692,23 @@ igt_main > > } > > } > > - test_each_engine_store("noreorder", fd, ctx, e) > > + test_each_ggtt_binder_nonblocking_engine("noreorder", fd, ctx, e) > > noreorder(fd, &ctx->cfg, e->flags, 0, 0); > > - test_each_engine_store("noreorder-priority", fd, ctx, e) { > > + test_each_ggtt_binder_nonblocking_engine("noreorder-priority", fd, ctx, e) { > > igt_require(gem_scheduler_enabled(fd)); > > noreorder(fd, &ctx->cfg, e->flags, MAX_PRIO, 0); > > } > > - test_each_engine_store("noreorder-corked", fd, ctx, e) { > > + test_each_ggtt_binder_nonblocking_engine("noreorder-corked", fd, ctx, e) { > > igt_require(gem_scheduler_enabled(fd)); > > noreorder(fd, &ctx->cfg, e->flags, MAX_PRIO, CORKED); > > } > > - test_each_engine_store("deep", fd, ctx, e) > > + test_each_ggtt_binder_nonblocking_engine("deep", fd, ctx, e) > > deep(fd, &ctx->cfg, e->flags); > > - test_each_engine_store("wide", fd, ctx, e) > > + test_each_ggtt_binder_nonblocking_engine("wide", fd, ctx, e) > > wide(fd, &ctx->cfg, e->flags); > > test_each_engine_store("smoketest", fd, ctx, e) > > @@ -3735,10 +3742,10 @@ igt_main > > test_each_engine("pi-userfault", fd, ctx, e) > > test_pi_userfault(fd, &ctx->cfg, e->flags); > > - test_each_engine("pi-distinct-iova", fd, ctx, e) > > + test_each_ggtt_binder_nonblocking_engine("pi-distinct-iova", fd, ctx, e) > > test_pi_iova(fd, &ctx->cfg, e->flags, 0); > > - test_each_engine("pi-shared-iova", fd, ctx, e) > > + test_each_ggtt_binder_nonblocking_engine("pi-shared-iova", fd, ctx, e) > > test_pi_iova(fd, &ctx->cfg, e->flags, SHARED); > > } ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 3/4] tests/intel/gem_ctx_schedule: Skip some test on MTL 2023-09-19 10:20 ` Kamil Konieczny @ 2023-09-19 14:17 ` Nirmoy Das 2023-09-20 7:54 ` Kamil Konieczny 0 siblings, 1 reply; 16+ messages in thread From: Nirmoy Das @ 2023-09-19 14:17 UTC (permalink / raw) To: Kamil Konieczny, igt-dev, Nirmoy Das, andi.shyti, oak.zeng On 9/19/2023 12:20 PM, Kamil Konieczny wrote: > Hi Nirmoy, > > On 2023-09-18 at 19:00:52 +0200, Nirmoy Das wrote: >> Hi Kamil, >> >> >> Updated the patch by adding "in-order" test and kept your rb. Hope you are >> ok with that. >> > No problem but as you make corrections maybe one more about style? > See below. > >> Regards, >> >> Nirmoy >> >> On 9/18/2023 6:47 PM, Nirmoy Das wrote: >>> We do GGTT update on MTL using bcs engine, blocking that would >>> fail the test so skip such subtests on bcs engine for MTL. >>> >>> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> >>> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> >>> --- >>> tests/intel/gem_exec_schedule.c | 39 +++++++++++++++++++-------------- >>> 1 file changed, 23 insertions(+), 16 deletions(-) >>> >>> diff --git a/tests/intel/gem_exec_schedule.c b/tests/intel/gem_exec_schedule.c >>> index c94988d36..183ee1a21 100644 >>> --- a/tests/intel/gem_exec_schedule.c >>> +++ b/tests/intel/gem_exec_schedule.c >>> @@ -3479,6 +3479,12 @@ static void fairslice(int i915, const intel_ctx_cfg_t *cfg, >>> for_each_if(gem_class_can_store_dword(fd, e->class)) \ >>> igt_dynamic_f("%s", e->name) >>> +#define test_each_ggtt_binder_nonblocking_engine(T, i915, ctx, e) \ >>> + igt_subtest_with_dynamic(T) for_each_ctx_engine(i915, ctx, e) \ >>> + for_each_if(gem_class_can_store_dword(fd, e->class) && \ >>> + !gem_engine_can_block_ggtt_binder(i915, e)) \ >>> + igt_dynamic_f("%s", e->name) >>> + >>> igt_main >>> { >>> int fd = -1; >>> @@ -3502,21 +3508,22 @@ igt_main >>> igt_subtest_group { >>> const struct intel_execution_engine2 *e; > Here should be newline, if you add it mension this in description. > >>> - test_each_engine_store("fifo", fd, ctx, e) >>> + test_each_ggtt_binder_nonblocking_engine("fifo", fd, ctx, e) >>> fifo(fd, ctx, e->flags); >>> - test_each_engine_store("implicit-read-write", fd, ctx, e) >>> + test_each_ggtt_binder_nonblocking_engine("implicit-read-write", fd, ctx, e) >>> implicit_rw(fd, ctx, e->flags, READ_WRITE); >>> - test_each_engine_store("implicit-write-read", fd, ctx, e) >>> + test_each_ggtt_binder_nonblocking_engine("implicit-write-read", fd, ctx, e) >>> implicit_rw(fd, ctx, e->flags, WRITE_READ); >>> - test_each_engine_store("implicit-boths", fd, ctx, e) >>> + test_each_ggtt_binder_nonblocking_engine("implicit-boths", fd, ctx, e) >>> implicit_rw(fd, ctx, e->flags, READ_WRITE | WRITE_READ); >>> - test_each_engine_store("independent", fd, ctx, e) >>> + test_each_ggtt_binder_nonblocking_engine("independent", fd, ctx, e) >>> independent(fd, ctx, e->flags, 0); >>> - test_each_engine_store("u-independent", fd, ctx, e) >>> + > This newline break style, either add newline after every subtest > or do not add new ones. In conclusion: I would prefer this newline > to be deleted. You may go with this in separate patch if you want. I can modify this to properly group tests with spaces. Thanks, Nirmoy > Regards, > Kamil > >>> + test_each_ggtt_binder_nonblocking_engine("u-independent", fd, ctx, e) >>> independent(fd, ctx, e->flags, IGT_SPIN_USERPTR); >>> } >>> @@ -3612,13 +3619,13 @@ igt_main >>> igt_subtest("smoketest-all") >>> smoketest(fd, &ctx->cfg, ALL_ENGINES, 30); >>> - test_each_engine_store("in-order", fd, ctx, e) >>> + test_each_ggtt_binder_nonblocking_engine("in-order", fd, ctx, e) >>> reorder(fd, &ctx->cfg, e->flags, EQUAL); >>> - test_each_engine_store("out-order", fd, ctx, e) >>> + test_each_ggtt_binder_nonblocking_engine("out-order", fd, ctx, e) >>> reorder(fd, &ctx->cfg, e->flags, 0); >>> - test_each_engine_store("promotion", fd, ctx, e) >>> + test_each_ggtt_binder_nonblocking_engine("promotion", fd, ctx, e) >>> promotion(fd, &ctx->cfg, e->flags); >>> igt_subtest_group { >>> @@ -3685,23 +3692,23 @@ igt_main >>> } >>> } >>> - test_each_engine_store("noreorder", fd, ctx, e) >>> + test_each_ggtt_binder_nonblocking_engine("noreorder", fd, ctx, e) >>> noreorder(fd, &ctx->cfg, e->flags, 0, 0); >>> - test_each_engine_store("noreorder-priority", fd, ctx, e) { >>> + test_each_ggtt_binder_nonblocking_engine("noreorder-priority", fd, ctx, e) { >>> igt_require(gem_scheduler_enabled(fd)); >>> noreorder(fd, &ctx->cfg, e->flags, MAX_PRIO, 0); >>> } >>> - test_each_engine_store("noreorder-corked", fd, ctx, e) { >>> + test_each_ggtt_binder_nonblocking_engine("noreorder-corked", fd, ctx, e) { >>> igt_require(gem_scheduler_enabled(fd)); >>> noreorder(fd, &ctx->cfg, e->flags, MAX_PRIO, CORKED); >>> } >>> - test_each_engine_store("deep", fd, ctx, e) >>> + test_each_ggtt_binder_nonblocking_engine("deep", fd, ctx, e) >>> deep(fd, &ctx->cfg, e->flags); >>> - test_each_engine_store("wide", fd, ctx, e) >>> + test_each_ggtt_binder_nonblocking_engine("wide", fd, ctx, e) >>> wide(fd, &ctx->cfg, e->flags); >>> test_each_engine_store("smoketest", fd, ctx, e) >>> @@ -3735,10 +3742,10 @@ igt_main >>> test_each_engine("pi-userfault", fd, ctx, e) >>> test_pi_userfault(fd, &ctx->cfg, e->flags); >>> - test_each_engine("pi-distinct-iova", fd, ctx, e) >>> + test_each_ggtt_binder_nonblocking_engine("pi-distinct-iova", fd, ctx, e) >>> test_pi_iova(fd, &ctx->cfg, e->flags, 0); >>> - test_each_engine("pi-shared-iova", fd, ctx, e) >>> + test_each_ggtt_binder_nonblocking_engine("pi-shared-iova", fd, ctx, e) >>> test_pi_iova(fd, &ctx->cfg, e->flags, SHARED); >>> } ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 3/4] tests/intel/gem_ctx_schedule: Skip some test on MTL 2023-09-19 14:17 ` Nirmoy Das @ 2023-09-20 7:54 ` Kamil Konieczny 0 siblings, 0 replies; 16+ messages in thread From: Kamil Konieczny @ 2023-09-20 7:54 UTC (permalink / raw) To: igt-dev; +Cc: andi.shyti, oak.zeng, Nirmoy Das Hi Nirmoy, On 2023-09-19 at 16:17:14 +0200, Nirmoy Das wrote: > > On 9/19/2023 12:20 PM, Kamil Konieczny wrote: > > Hi Nirmoy, > > > > On 2023-09-18 at 19:00:52 +0200, Nirmoy Das wrote: > > > Hi Kamil, > > > > > > > > > Updated the patch by adding "in-order" test and kept your rb. Hope you are > > > ok with that. > > > > > No problem but as you make corrections maybe one more about style? > > See below. > > > > > Regards, > > > > > > Nirmoy > > > > > > On 9/18/2023 6:47 PM, Nirmoy Das wrote: > > > > We do GGTT update on MTL using bcs engine, blocking that would > > > > fail the test so skip such subtests on bcs engine for MTL. > > > > > > > > Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> > > > > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > > > --- > > > > tests/intel/gem_exec_schedule.c | 39 +++++++++++++++++++-------------- > > > > 1 file changed, 23 insertions(+), 16 deletions(-) > > > > > > > > diff --git a/tests/intel/gem_exec_schedule.c b/tests/intel/gem_exec_schedule.c > > > > index c94988d36..183ee1a21 100644 > > > > --- a/tests/intel/gem_exec_schedule.c > > > > +++ b/tests/intel/gem_exec_schedule.c > > > > @@ -3479,6 +3479,12 @@ static void fairslice(int i915, const intel_ctx_cfg_t *cfg, > > > > for_each_if(gem_class_can_store_dword(fd, e->class)) \ > > > > igt_dynamic_f("%s", e->name) > > > > +#define test_each_ggtt_binder_nonblocking_engine(T, i915, ctx, e) \ > > > > + igt_subtest_with_dynamic(T) for_each_ctx_engine(i915, ctx, e) \ > > > > + for_each_if(gem_class_can_store_dword(fd, e->class) && \ > > > > + !gem_engine_can_block_ggtt_binder(i915, e)) \ > > > > + igt_dynamic_f("%s", e->name) > > > > + > > > > igt_main > > > > { > > > > int fd = -1; > > > > @@ -3502,21 +3508,22 @@ igt_main > > > > igt_subtest_group { > > > > const struct intel_execution_engine2 *e; > > Here should be newline, if you add it mension this in description. > > > > > > - test_each_engine_store("fifo", fd, ctx, e) > > > > + test_each_ggtt_binder_nonblocking_engine("fifo", fd, ctx, e) > > > > fifo(fd, ctx, e->flags); > > > > - test_each_engine_store("implicit-read-write", fd, ctx, e) > > > > + test_each_ggtt_binder_nonblocking_engine("implicit-read-write", fd, ctx, e) > > > > implicit_rw(fd, ctx, e->flags, READ_WRITE); > > > > - test_each_engine_store("implicit-write-read", fd, ctx, e) > > > > + test_each_ggtt_binder_nonblocking_engine("implicit-write-read", fd, ctx, e) > > > > implicit_rw(fd, ctx, e->flags, WRITE_READ); > > > > - test_each_engine_store("implicit-boths", fd, ctx, e) > > > > + test_each_ggtt_binder_nonblocking_engine("implicit-boths", fd, ctx, e) > > > > implicit_rw(fd, ctx, e->flags, READ_WRITE | WRITE_READ); > > > > - test_each_engine_store("independent", fd, ctx, e) > > > > + test_each_ggtt_binder_nonblocking_engine("independent", fd, ctx, e) > > > > independent(fd, ctx, e->flags, 0); > > > > - test_each_engine_store("u-independent", fd, ctx, e) > > > > + > > This newline break style, either add newline after every subtest > > or do not add new ones. In conclusion: I would prefer this newline > > to be deleted. You may go with this in separate patch if you want. > > I can modify this to properly group tests with spaces. Ok but please in separate patchseries. -- Kamil > > Thanks, > > Nirmoy > > > Regards, > > Kamil > > > > > > + test_each_ggtt_binder_nonblocking_engine("u-independent", fd, ctx, e) > > > > independent(fd, ctx, e->flags, IGT_SPIN_USERPTR); > > > > } > > > > @@ -3612,13 +3619,13 @@ igt_main > > > > igt_subtest("smoketest-all") > > > > smoketest(fd, &ctx->cfg, ALL_ENGINES, 30); > > > > - test_each_engine_store("in-order", fd, ctx, e) > > > > + test_each_ggtt_binder_nonblocking_engine("in-order", fd, ctx, e) > > > > reorder(fd, &ctx->cfg, e->flags, EQUAL); > > > > - test_each_engine_store("out-order", fd, ctx, e) > > > > + test_each_ggtt_binder_nonblocking_engine("out-order", fd, ctx, e) > > > > reorder(fd, &ctx->cfg, e->flags, 0); > > > > - test_each_engine_store("promotion", fd, ctx, e) > > > > + test_each_ggtt_binder_nonblocking_engine("promotion", fd, ctx, e) > > > > promotion(fd, &ctx->cfg, e->flags); > > > > igt_subtest_group { > > > > @@ -3685,23 +3692,23 @@ igt_main > > > > } > > > > } > > > > - test_each_engine_store("noreorder", fd, ctx, e) > > > > + test_each_ggtt_binder_nonblocking_engine("noreorder", fd, ctx, e) > > > > noreorder(fd, &ctx->cfg, e->flags, 0, 0); > > > > - test_each_engine_store("noreorder-priority", fd, ctx, e) { > > > > + test_each_ggtt_binder_nonblocking_engine("noreorder-priority", fd, ctx, e) { > > > > igt_require(gem_scheduler_enabled(fd)); > > > > noreorder(fd, &ctx->cfg, e->flags, MAX_PRIO, 0); > > > > } > > > > - test_each_engine_store("noreorder-corked", fd, ctx, e) { > > > > + test_each_ggtt_binder_nonblocking_engine("noreorder-corked", fd, ctx, e) { > > > > igt_require(gem_scheduler_enabled(fd)); > > > > noreorder(fd, &ctx->cfg, e->flags, MAX_PRIO, CORKED); > > > > } > > > > - test_each_engine_store("deep", fd, ctx, e) > > > > + test_each_ggtt_binder_nonblocking_engine("deep", fd, ctx, e) > > > > deep(fd, &ctx->cfg, e->flags); > > > > - test_each_engine_store("wide", fd, ctx, e) > > > > + test_each_ggtt_binder_nonblocking_engine("wide", fd, ctx, e) > > > > wide(fd, &ctx->cfg, e->flags); > > > > test_each_engine_store("smoketest", fd, ctx, e) > > > > @@ -3735,10 +3742,10 @@ igt_main > > > > test_each_engine("pi-userfault", fd, ctx, e) > > > > test_pi_userfault(fd, &ctx->cfg, e->flags); > > > > - test_each_engine("pi-distinct-iova", fd, ctx, e) > > > > + test_each_ggtt_binder_nonblocking_engine("pi-distinct-iova", fd, ctx, e) > > > > test_pi_iova(fd, &ctx->cfg, e->flags, 0); > > > > - test_each_engine("pi-shared-iova", fd, ctx, e) > > > > + test_each_ggtt_binder_nonblocking_engine("pi-shared-iova", fd, ctx, e) > > > > test_pi_iova(fd, &ctx->cfg, e->flags, SHARED); > > > > } ^ permalink raw reply [flat|nested] 16+ messages in thread
* [igt-dev] [PATCH i-g-t 4/4] tests/intel/gem_spin_batch: Skip some test on MTL 2023-09-18 16:47 [igt-dev] [PATCH i-g-t 0/4] Ignore some tests on MTL which Nirmoy Das ` (2 preceding siblings ...) 2023-09-18 16:47 ` [igt-dev] [PATCH i-g-t 3/4] tests/intel/gem_ctx_schedule: " Nirmoy Das @ 2023-09-18 16:47 ` Nirmoy Das 2023-09-20 7:51 ` Kamil Konieczny 2023-09-18 21:40 ` [igt-dev] ✓ Fi.CI.BAT: success for Ignore some tests on MTL which (rev4) Patchwork ` (4 subsequent siblings) 8 siblings, 1 reply; 16+ messages in thread From: Nirmoy Das @ 2023-09-18 16:47 UTC (permalink / raw) To: igt-dev; +Cc: andi.shyti, oak.zeng, Nirmoy Das We do GGTT update on MTL using bcs engine, blocking that would fail the test so skip such subtests on bcs engine for MTL. Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> --- tests/intel/gem_spin_batch.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/intel/gem_spin_batch.c b/tests/intel/gem_spin_batch.c index 18873be16..ec1458e35 100644 --- a/tests/intel/gem_spin_batch.c +++ b/tests/intel/gem_spin_batch.c @@ -227,6 +227,9 @@ static void spin_all(int i915, const intel_ctx_t *ctx, unsigned int flags) if (!gem_class_can_store_dword(i915, e->class)) continue; + if (gem_engine_can_block_ggtt_binder(i915, e)) + continue; + if (flags & PARALLEL_SPIN_NEW_CTX) ctx = intel_ctx_create(i915, &cfg); ahnd = get_reloc_ahnd(i915, ctx->id); -- 2.41.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 4/4] tests/intel/gem_spin_batch: Skip some test on MTL 2023-09-18 16:47 ` [igt-dev] [PATCH i-g-t 4/4] tests/intel/gem_spin_batch: " Nirmoy Das @ 2023-09-20 7:51 ` Kamil Konieczny 0 siblings, 0 replies; 16+ messages in thread From: Kamil Konieczny @ 2023-09-20 7:51 UTC (permalink / raw) To: igt-dev; +Cc: andi.shyti, oak.zeng, Nirmoy Das Hi Nirmoy, On 2023-09-18 at 18:47:47 +0200, Nirmoy Das wrote: > We do GGTT update on MTL using bcs engine, blocking that would > fail the test so skip such subtests on bcs engine for MTL. > > Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > tests/intel/gem_spin_batch.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/tests/intel/gem_spin_batch.c b/tests/intel/gem_spin_batch.c > index 18873be16..ec1458e35 100644 > --- a/tests/intel/gem_spin_batch.c > +++ b/tests/intel/gem_spin_batch.c > @@ -227,6 +227,9 @@ static void spin_all(int i915, const intel_ctx_t *ctx, unsigned int flags) > if (!gem_class_can_store_dword(i915, e->class)) > continue; > > + if (gem_engine_can_block_ggtt_binder(i915, e)) > + continue; > + > if (flags & PARALLEL_SPIN_NEW_CTX) > ctx = intel_ctx_create(i915, &cfg); > ahnd = get_reloc_ahnd(i915, ctx->id); > -- > 2.41.0 > ^ permalink raw reply [flat|nested] 16+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Ignore some tests on MTL which (rev4) 2023-09-18 16:47 [igt-dev] [PATCH i-g-t 0/4] Ignore some tests on MTL which Nirmoy Das ` (3 preceding siblings ...) 2023-09-18 16:47 ` [igt-dev] [PATCH i-g-t 4/4] tests/intel/gem_spin_batch: " Nirmoy Das @ 2023-09-18 21:40 ` Patchwork 2023-09-18 22:44 ` [igt-dev] ✓ CI.xeBAT: " Patchwork ` (3 subsequent siblings) 8 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2023-09-18 21:40 UTC (permalink / raw) To: Nirmoy Das; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3630 bytes --] == Series Details == Series: Ignore some tests on MTL which (rev4) URL : https://patchwork.freedesktop.org/series/123602/ State : success == Summary == CI Bug Log - changes from CI_DRM_13651 -> IGTPW_9823 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/index.html Participating hosts (38 -> 30) ------------------------------ Additional (1): fi-kbl-soraka Missing (9): fi-skl-guc bat-adlm-1 fi-ilk-650 bat-adlp-6 fi-snb-2520m fi-hsw-4770 bat-adln-1 fi-kbl-8809g bat-dg2-13 Known issues ------------ Here are the changes found in IGTPW_9823 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@smem: - bat-dg2-9: [PASS][1] -> [INCOMPLETE][2] ([i915#8797] / [i915#9275]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][5] ([i915#1886] / [i915#7913]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@kms_dsc@dsc-basic: - fi-kbl-soraka: NOTRUN -> [SKIP][6] ([fdo#109271]) +9 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html #### Possible fixes #### * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [ABORT][7] ([i915#7913]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#8797]: https://gitlab.freedesktop.org/drm/intel/issues/8797 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7493 -> IGTPW_9823 CI-20190529: 20190529 CI_DRM_13651: 61b71c3f061a44a6ab1dcf756918886aa03a5480 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9823: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/index.html IGT_7493: 2517e42d612e0c1ca096acf8b5f6177f7ef4bce7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_concurrent@pipe-a +igt@kms_concurrent@pipe-b +igt@kms_concurrent@pipe-c +igt@kms_concurrent@pipe-d +igt@kms_concurrent@pipe-e +igt@kms_concurrent@pipe-f +igt@kms_concurrent@pipe-g +igt@kms_concurrent@pipe-h -igt@kms_concurrent@multi-plane-atomic-resolution == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/index.html [-- Attachment #2: Type: text/html, Size: 4602 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for Ignore some tests on MTL which (rev4) 2023-09-18 16:47 [igt-dev] [PATCH i-g-t 0/4] Ignore some tests on MTL which Nirmoy Das ` (4 preceding siblings ...) 2023-09-18 21:40 ` [igt-dev] ✓ Fi.CI.BAT: success for Ignore some tests on MTL which (rev4) Patchwork @ 2023-09-18 22:44 ` Patchwork 2023-09-20 0:17 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (2 subsequent siblings) 8 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2023-09-18 22:44 UTC (permalink / raw) To: Nirmoy Das; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1877 bytes --] == Series Details == Series: Ignore some tests on MTL which (rev4) URL : https://patchwork.freedesktop.org/series/123602/ State : success == Summary == CI Bug Log - changes from XEIGT_7493_BAT -> XEIGTPW_9823_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9823_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#480]) +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7493/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9823/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 Build changes ------------- * IGT: IGT_7493 -> IGTPW_9823 * Linux: xe-376-9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d -> xe-379-22df933d86d3e15520b5ef409396a6f507f4ae53 IGTPW_9823: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/index.html IGT_7493: 2517e42d612e0c1ca096acf8b5f6177f7ef4bce7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-376-9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d: 9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d xe-379-22df933d86d3e15520b5ef409396a6f507f4ae53: 22df933d86d3e15520b5ef409396a6f507f4ae53 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9823/index.html [-- Attachment #2: Type: text/html, Size: 2389 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Ignore some tests on MTL which (rev4) 2023-09-18 16:47 [igt-dev] [PATCH i-g-t 0/4] Ignore some tests on MTL which Nirmoy Das ` (5 preceding siblings ...) 2023-09-18 22:44 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-09-20 0:17 ` Patchwork 2023-09-22 10:29 ` Nirmoy Das 2023-09-20 8:57 ` [igt-dev] [PATCH i-g-t 0/4] Ignore some tests on MTL which Andi Shyti 2023-09-22 11:25 ` [igt-dev] ✗ Fi.CI.BAT: failure for Ignore some tests on MTL which (rev5) Patchwork 8 siblings, 1 reply; 16+ messages in thread From: Patchwork @ 2023-09-20 0:17 UTC (permalink / raw) To: Nirmoy Das; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 86308 bytes --] == Series Details == Series: Ignore some tests on MTL which (rev4) URL : https://patchwork.freedesktop.org/series/123602/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13651_full -> IGTPW_9823_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9823_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9823_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9823/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9823_full: ### IGT changes ### #### Possible regressions #### * igt@kms_selftest@drm_dp_mst: - shard-mtlp: NOTRUN -> [TIMEOUT][1] +2 other tests timeout [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@kms_selftest@drm_dp_mst.html - shard-rkl: NOTRUN -> [TIMEOUT][2] +1 other test timeout [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@kms_selftest@drm_dp_mst.html * igt@kms_selftest@drm_format_helper: - shard-dg2: NOTRUN -> [TIMEOUT][3] +2 other tests timeout [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@kms_selftest@drm_format_helper.html * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: - shard-apl: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-apl6/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-apl1/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html Known issues ------------ Here are the changes found in IGTPW_9823_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#7701]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +20 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +11 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-3/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][11] -> [FAIL][12] ([i915#7742]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@drm_fdinfo@virtual-busy-hang-all: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-19/igt@drm_fdinfo@virtual-busy-hang-all.html * igt@gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#4873]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-1/igt@gem_caching@reads.html * igt@gem_ccs@ctrl-surf-copy: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#3555]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#9323]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@gem_ccs@suspend-resume.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#6335]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: NOTRUN -> [ABORT][18] ([i915#9262]) +9 other tests abort [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-1/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@legacy-engines-mixed: - shard-snb: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#1099]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb4/igt@gem_ctx_persistence@legacy-engines-mixed.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][22] ([i915#7975] / [i915#8213]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@gem_eio@hibernate.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][23] ([i915#8898]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb4/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-semaphore: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4812]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@bonded-sync: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4771]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_fair@basic-none-vip: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#4473] / [i915#4771]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][27] -> [FAIL][28] ([i915#2842]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@gem_exec_fence@submit67.html - shard-dg1: NOTRUN -> [SKIP][30] ([i915#4812]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-18/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-6/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#7697]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#5107]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#3281]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3281]) +17 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3281]) +5 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4537]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s3@smem: - shard-snb: NOTRUN -> [DMESG-WARN][40] ([i915#8841]) +8 other tests dmesg-warn [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb2/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: [PASS][41] -> [ABORT][42] ([i915#7975] / [i915#8213]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-3/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-copy: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4860]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@gem_fence_thrash@bo-copy.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4613]) +7 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4083]) +7 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@close-race: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4077]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-14/igt@gem_mmap_gtt@close-race.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4077]) +15 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4077]) +12 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4083]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@gem_mmap_wc@copy.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3282]) +7 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@snoop: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3282]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-15/igt@gem_pread@snoop.html * igt@gem_pxp@display-protected-crc: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4270]) +5 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4270]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4270]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-19/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3282]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-10/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#8428]) +8 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4079]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4079]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-17/igt@gem_set_tiling_vs_gtt.html - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4079]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-1/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4885]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@gem_softpin@evict-snoop-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4885]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4879]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3297]) +4 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3297]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3297] / [i915#4880]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@unsync-overlap: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#3297]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-2/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@vma-merge: - shard-dg2: NOTRUN -> [FAIL][67] ([i915#3318]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@gem_userptr_blits@vma-merge.html - shard-snb: NOTRUN -> [FAIL][68] ([i915#2724]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb2/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_tiledy_blits: - shard-mtlp: NOTRUN -> [SKIP][69] ([fdo#109289]) +9 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@gen3_render_tiledy_blits.html * igt@gen7_exec_parse@basic-allocation: - shard-rkl: NOTRUN -> [SKIP][70] ([fdo#109289]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-4/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@basic-offset: - shard-dg2: NOTRUN -> [SKIP][71] ([fdo#109289]) +7 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@gen7_exec_parse@basic-offset.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#2856]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@bb-large: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#2856]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-3/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#2527]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html * igt@i915_fb_tiling: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4881]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@i915_fb_tiling.html * igt@i915_hangman@gt-engine-error@vcs0: - shard-mtlp: [PASS][76] -> [FAIL][77] ([i915#7069]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-mtlp-7/igt@i915_hangman@gt-engine-error@vcs0.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@i915_hangman@gt-engine-error@vcs0.html * igt@i915_hwmon@hwmon-read: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#7707]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@i915_hwmon@hwmon-read.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#6227]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][80] -> [INCOMPLETE][81] ([i915#9200]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#6590]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: [PASS][83] -> [FAIL][84] ([i915#3591]) +1 other test fail [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][85] -> [SKIP][86] ([i915#1397]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#1397]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#8431]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#1397]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg1: [PASS][90] -> [SKIP][91] ([i915#1397]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-18/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#6621]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#8925]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_rps@waitboost: - shard-mtlp: NOTRUN -> [FAIL][94] ([i915#8346]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@i915_pm_rps@waitboost.html * igt@i915_query@query-topology-unsupported: - shard-dg2: NOTRUN -> [SKIP][95] ([fdo#109302]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@mock@memory_region: - shard-mtlp: NOTRUN -> [DMESG-WARN][96] ([i915#9311] / [i915#9312]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][97] -> [FAIL][98] ([fdo#103375]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-rkl-2/igt@i915_suspend@basic-s3-without-i915.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@sysfs-reader: - shard-dg1: [PASS][99] -> [FAIL][100] ([fdo#103375]) +2 other tests fail [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-16/igt@i915_suspend@sysfs-reader.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-19/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#5190]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4212]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4215] / [i915#5190]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#4212]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#3826]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#8709]) +11 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][107] ([i915#8247]) +3 other tests fail [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@invalid-async-flip: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#6228]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][109] ([fdo#111614]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5286]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-17/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#5286]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][112] ([fdo#111614]) +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][113] ([fdo#111614] / [i915#3638]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#6187]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [PASS][115] -> [FAIL][116] ([i915#3743]) +1 other test fail [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][117] ([fdo#111615]) +9 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#5190]) +10 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-15/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][120] ([fdo#110723]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][121] ([fdo#111615]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-17/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-rkl: NOTRUN -> [SKIP][122] ([fdo#111615]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5190]) +5 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_joiner@invalid-modeset: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#2705]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-4/igt@kms_big_joiner@invalid-modeset.html - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#2705]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#3886] / [i915#6095]) +13 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#5354] / [i915#6095]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#6095]) +50 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#5354] / [i915#6095]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-6/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][130] ([fdo#109271] / [i915#3886]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-glk3/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][131] ([fdo#109271] / [i915#3886]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-apl2/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-13/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#5354]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-7/igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3689] / [i915#3886] / [i915#5354]) +14 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-6/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#5354] / [i915#6095]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-2/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs: - shard-glk: NOTRUN -> [SKIP][136] ([fdo#109271]) +29 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-glk6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#3689] / [i915#5354]) +22 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#5354] / [i915#6095]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-17/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#3689] / [i915#5354] / [i915#6095]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-15/igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#4087] / [i915#7213]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#4087]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-1/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg2: NOTRUN -> [SKIP][142] ([fdo#111827]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@kms_chamelium_color@ctm-0-50.html - shard-mtlp: NOTRUN -> [SKIP][143] ([fdo#111827]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#7828]) +9 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#7828]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-13/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#7828]) +14 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-1/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_content_protection@atomic-dpms: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6944]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#3299]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#3299]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#7116]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-19/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#7118]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][152] ([i915#1339]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3359]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#3359]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#3555]) +6 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html - shard-dg1: NOTRUN -> [SKIP][156] ([i915#3555]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-15/igt@kms_cursor_crc@cursor-sliding-32x10.html - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#8814]) +4 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3: - shard-dg2: [PASS][158] -> [FAIL][159] ([fdo#103375]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-7/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][160] ([fdo#109274] / [fdo#111767] / [i915#5354]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#4213]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-snb: NOTRUN -> [SKIP][162] ([fdo#109271] / [fdo#111767]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][163] ([fdo#109274] / [i915#5354]) +7 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3546]) +3 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#9226] / [i915#9261]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#9227]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#8827]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#8588]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#8812]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#8812]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#3840] / [i915#9159]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3840]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-10/igt@kms_dsc@dsc-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: NOTRUN -> [FAIL][173] ([fdo#103375]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-5/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][174] ([fdo#109274]) +5 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#8381]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#8381]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning: - shard-rkl: NOTRUN -> [SKIP][177] ([fdo#111825]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3637]) +9 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-rmfb@b-vga1: - shard-snb: [PASS][179] -> [ABORT][180] ([i915#8865]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-snb6/igt@kms_flip@flip-vs-rmfb@b-vga1.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb7/igt@kms_flip@flip-vs-rmfb@b-vga1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#2587] / [i915#2672]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#2672]) +2 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#2672]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-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-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#2672]) +4 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#8810]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#2672] / [i915#3555]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-mtlp: NOTRUN -> [SKIP][187] ([fdo#109285]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#8708]) +17 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#8708]) +14 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][190] ([fdo#111825]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][191] ([fdo#111825] / [i915#1825]) +5 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#3458]) +13 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#8708]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#1825]) +47 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#5354]) +47 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][196] ([fdo#110189]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#3458]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][198] ([fdo#109280]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#3023]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8228]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#8228]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@kms_hdr@static-swap.html * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#6403]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: - shard-mtlp: [PASS][203] -> [ABORT][204] ([i915#9262]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-mtlp-1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#8806]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8806]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-1/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][207] ([i915#8292]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][208] ([i915#8292]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#5176]) +3 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#5176]) +5 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#5176]) +9 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#5176]) +11 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][213] ([fdo#109271]) +209 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#5235]) +7 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-dp-1: - shard-apl: NOTRUN -> [SKIP][215] ([fdo#109271]) +43 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-apl2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-dp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#5235]) +11 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#5235]) +15 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#5235]) +19 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_prime@basic-modeset-hybrid: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#6524]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-glk: NOTRUN -> [SKIP][220] ([fdo#109271] / [i915#658]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-glk8/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html - shard-dg2: NOTRUN -> [SKIP][221] ([i915#658]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#1072]) +3 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-5/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#4235]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-1/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#5289]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-rkl: [PASS][225] -> [INCOMPLETE][226] ([i915#8875]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-rkl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#4235] / [i915#5190]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-rkl: NOTRUN -> [SKIP][228] ([fdo#111615] / [i915#5289]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#5030]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][230] ([i915#5465]) +1 other test fail [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#8823]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-tglu: [PASS][232] -> [FAIL][233] ([i915#9196]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - shard-dg1: [PASS][234] -> [FAIL][235] ([i915#9196]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-19/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@kms_vblank@pipe-c-wait-forked-busy: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#4070] / [i915#6768]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@kms_vblank@pipe-c-wait-forked-busy.html * igt@kms_vblank@pipe-d-query-forked-busy: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#4070] / [i915#533] / [i915#6768]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-1/igt@kms_vblank@pipe-d-query-forked-busy.html * igt@kms_writeback@writeback-invalid-parameters: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2437]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@buffer-fill@0-rcs0: - shard-mtlp: NOTRUN -> [FAIL][239] ([i915#7823] / [i915#9265]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-3/igt@perf@buffer-fill@0-rcs0.html * igt@perf@gen12-group-concurrent-oa-buffer-read: - shard-mtlp: NOTRUN -> [FAIL][240] ([i915#9259]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@perf@gen12-group-concurrent-oa-buffer-read.html * igt@perf@polling-small-buf: - shard-mtlp: NOTRUN -> [FAIL][241] ([i915#1722]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@perf@polling-small-buf.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#8850]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][243] ([fdo#112283]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][244] ([i915#6806]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][245] ([i915#5793] / [i915#6121]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-6/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-suspend: - shard-mtlp: NOTRUN -> [ABORT][246] ([i915#9262] / [i915#9268]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@perf_pmu@rc6-suspend.html * igt@prime_vgem@basic-blt: - shard-mtlp: NOTRUN -> [FAIL][247] ([i915#8445]) +1 other test fail [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@prime_vgem@basic-blt.html * igt@prime_vgem@basic-read: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#3708]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#3291] / [i915#3708]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-3/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#3708]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@prime_vgem@fence-flip-hang.html * igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#2575]) +2 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-19/igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync.html * igt@v3d/v3d_perfmon@create-perfmon-0: - shard-rkl: NOTRUN -> [SKIP][252] ([fdo#109315]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-7/igt@v3d/v3d_perfmon@create-perfmon-0.html * igt@v3d/v3d_submit_cl@bad-multisync-out-sync: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#2575]) +12 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-6/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html * igt@v3d/v3d_submit_csd@bad-bo: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#2575]) +15 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@v3d/v3d_submit_csd@bad-bo.html * igt@vc4/vc4_mmap@mmap-bo: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#7711]) +7 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-5/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_perfmon@destroy-valid-perfmon: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#7711]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-14/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#7711]) +10 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_tiling@set-bad-modifier: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#7711]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@vc4/vc4_tiling@set-bad-modifier.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - shard-snb: [INCOMPLETE][259] -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-snb1/igt@core_hotunplug@unbind-rebind.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb7/igt@core_hotunplug@unbind-rebind.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [FAIL][261] ([i915#6268]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][263] ([i915#5784]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-14/igt@gem_eio@reset-stress.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-17/igt@gem_eio@reset-stress.html * igt@gem_exec_endless@dispatch@vecs0: - shard-dg1: [TIMEOUT][265] ([i915#3778]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-16/igt@gem_exec_endless@dispatch@vecs0.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-15/igt@gem_exec_endless@dispatch@vecs0.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglu: [FAIL][267] ([i915#2842]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-6/igt@gem_exec_fair@basic-flow@rcs0.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-5/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][269] ([i915#5493]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [INCOMPLETE][271] ([i915#5566]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-apl4/igt@gen9_exec_parse@allowed-single.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-apl2/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][273] ([i915#1397]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-1/igt@i915_pm_rpm@dpms-non-lpsp.html - shard-dg1: [SKIP][275] ([i915#1397]) -> [PASS][276] +1 other test pass [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-15/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][277] ([i915#1397]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_selftest@live@gt_heartbeat: - shard-glk: [DMESG-FAIL][279] ([i915#5334]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-glk2/igt@i915_selftest@live@gt_heartbeat.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-glk7/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg1: [DMESG-WARN][281] ([i915#4391] / [i915#4423]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-17/igt@i915_suspend@basic-s3-without-i915.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-15/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_gen12_rc_ccs: - shard-dg1: [DMESG-WARN][283] ([i915#4423]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-17/igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_gen12_rc_ccs.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-16/igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_gen12_rc_ccs.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][285] ([i915#2346]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][287] ([i915#2346]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-suspend@b-edp1: - shard-mtlp: [DMESG-WARN][289] ([i915#9262]) -> [PASS][290] +2 other tests pass [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-mtlp-4/igt@kms_flip@flip-vs-suspend@b-edp1.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@kms_flip@flip-vs-suspend@b-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-dg2: [FAIL][291] ([i915#6880]) -> [PASS][292] [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1: - shard-apl: [INCOMPLETE][293] ([i915#180]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html * igt@kms_plane@pixel-format@pipe-a-planes: - shard-glk: [DMESG-FAIL][295] ([i915#118]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-glk2/igt@kms_plane@pixel-format@pipe-a-planes.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-glk6/igt@kms_plane@pixel-format@pipe-a-planes.html * {igt@kms_pm_dc@dc6-dpms}: - shard-tglu: [FAIL][297] ([i915#9295]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html * igt@kms_vblank@pipe-b-ts-continuation-suspend: - shard-dg2: [FAIL][299] ([fdo#103375]) -> [PASS][300] +1 other test pass [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-5/igt@kms_vblank@pipe-b-ts-continuation-suspend.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-5/igt@kms_vblank@pipe-b-ts-continuation-suspend.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][301] ([i915#4349]) -> [PASS][302] +3 other tests pass [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [ABORT][303] ([i915#4983] / [i915#7461]) -> [INCOMPLETE][304] ([i915#4983]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-14/igt@device_reset@unbind-reset-rebind.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-tglu: [FAIL][305] ([i915#2681] / [i915#3591]) -> [WARN][306] ([i915#2681]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@kms_async_flips@crc@pipe-d-edp-1: - shard-mtlp: [DMESG-FAIL][307] ([i915#8561]) -> [FAIL][308] ([i915#8247]) +2 other tests fail [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-mtlp-4/igt@kms_async_flips@crc@pipe-d-edp-1.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@kms_async_flips@crc@pipe-d-edp-1.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][309] ([i915#1072]) -> [SKIP][310] ([i915#1072] / [i915#4078]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-15/igt@kms_psr@cursor_plane_move.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-16/igt@kms_psr@cursor_plane_move.html * igt@perf_pmu@rc6@other-idle-gt1: - shard-mtlp: [SKIP][311] ([i915#8537]) -> [INCOMPLETE][312] ([i915#9268]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-mtlp-2/igt@perf_pmu@rc6@other-idle-gt1.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@perf_pmu@rc6@other-idle-gt1.html * igt@perf_pmu@rc6@runtime-pm-long-gt1: - shard-mtlp: [SKIP][313] ([i915#8537]) -> [DMESG-WARN][314] ([i915#9335]) +1 other test dmesg-warn [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-mtlp-2/igt@perf_pmu@rc6@runtime-pm-long-gt1.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@perf_pmu@rc6@runtime-pm-long-gt1.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [INCOMPLETE][315] ([i915#5493]) -> [CRASH][316] ([i915#9351]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [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#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [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#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2724]: https://gitlab.freedesktop.org/drm/intel/issues/2724 [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#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [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#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#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#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#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [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#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [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#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403 [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#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [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#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [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#7823]: https://gitlab.freedesktop.org/drm/intel/issues/7823 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [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#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445 [i915#8537]: https://gitlab.freedesktop.org/drm/intel/issues/8537 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [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#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9259]: https://gitlab.freedesktop.org/drm/intel/issues/9259 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9265]: https://gitlab.freedesktop.org/drm/intel/issues/9265 [i915#9268]: https://gitlab.freedesktop.org/drm/intel/issues/9268 [i915#9292]: https://gitlab.freedesktop.org/drm/intel/issues/9292 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9312]: https://gitlab.freedesktop.org/drm/intel/issues/9312 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9335]: https://gitlab.freedesktop.org/drm/intel/issues/9335 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7493 -> IGTPW_9823 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13651: 61b71c3f061a44a6ab1dcf756918886aa03a5480 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9823: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/index.html IGT_7493: 2517e42d612e0c1ca096acf8b5f6177f7ef4bce7 @ 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_9823/index.html [-- Attachment #2: Type: text/html, Size: 103346 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Ignore some tests on MTL which (rev4) 2023-09-20 0:17 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-09-22 10:29 ` Nirmoy Das 0 siblings, 0 replies; 16+ messages in thread From: Nirmoy Das @ 2023-09-22 10:29 UTC (permalink / raw) To: igt-dev, Patchwork, Nirmoy Das [-- Attachment #1: Type: text/plain, Size: 98962 bytes --] On 9/20/2023 2:17 AM, Patchwork wrote: > Project List - Patchwork *Patch Details* > *Series:* Ignore some tests on MTL which (rev4) > *URL:* https://patchwork.freedesktop.org/series/123602/ > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/index.html > > > CI Bug Log - changes from CI_DRM_13651_full -> IGTPW_9823_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_9823_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_9823_full, please notify your bug team > (lgci.bug.filing@intel.com) 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_9823/index.html > > > Participating hosts (9 -> 9) > > No changes in participating hosts > > > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_9823_full: > > > IGT changes > > > Possible regressions > > * > > igt@kms_selftest@drm_dp_mst: > > o > > shard-mtlp: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@kms_selftest@drm_dp_mst.html> > +2 other tests timeout > > o > > shard-rkl: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@kms_selftest@drm_dp_mst.html> > +1 other test timeout > > * > > igt@kms_selftest@drm_format_helper: > > o shard-dg2: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@kms_selftest@drm_format_helper.html> > +2 other tests timeout > * > > igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: > > o shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-apl6/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-apl1/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html> > Unrelated failure as those tests are not changed. > * > > > Known issues > > Here are the changes found in IGTPW_9823_full that come from known issues: > > > IGT changes > > > Issues hit > > * > > igt@api_intel_bb@blit-reloc-keep-cache: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@api_intel_bb@blit-reloc-keep-cache.html> > (i915#8411 <https://gitlab.freedesktop.org/drm/intel/issues/8411>) > * > > igt@api_intel_bb@object-reloc-keep-cache: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@api_intel_bb@object-reloc-keep-cache.html> > (i915#8411 <https://gitlab.freedesktop.org/drm/intel/issues/8411>) > * > > igt@device_reset@unbind-cold-reset-rebind: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@device_reset@unbind-cold-reset-rebind.html> > (i915#7701 <https://gitlab.freedesktop.org/drm/intel/issues/7701>) > * > > igt@drm_fdinfo@all-busy-check-all: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@drm_fdinfo@all-busy-check-all.html> > (i915#8414 > <https://gitlab.freedesktop.org/drm/intel/issues/8414>) +20 > other tests skip > * > > igt@drm_fdinfo@busy-hang@bcs0: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-3/igt@drm_fdinfo@busy-hang@bcs0.html> > (i915#8414 > <https://gitlab.freedesktop.org/drm/intel/issues/8414>) +11 > other tests skip > * > > igt@drm_fdinfo@most-busy-idle-check-all@rcs0: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html> > (i915#7742 <https://gitlab.freedesktop.org/drm/intel/issues/7742>) > * > > igt@drm_fdinfo@virtual-busy-hang-all: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-19/igt@drm_fdinfo@virtual-busy-hang-all.html> > (i915#8414 <https://gitlab.freedesktop.org/drm/intel/issues/8414>) > * > > igt@gem_caching@reads: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-1/igt@gem_caching@reads.html> > (i915#4873 <https://gitlab.freedesktop.org/drm/intel/issues/4873>) > * > > igt@gem_ccs@ctrl-surf-copy: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@gem_ccs@ctrl-surf-copy.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1 > other test skip > * > > igt@gem_ccs@suspend-resume: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@gem_ccs@suspend-resume.html> > (i915#9323 > <https://gitlab.freedesktop.org/drm/intel/issues/9323>) +1 > other test skip > * > > igt@gem_create@create-ext-cpu-access-big: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html> > (i915#6335 <https://gitlab.freedesktop.org/drm/intel/issues/6335>) > * > > igt@gem_ctx_persistence@engines-hostile@vcs0: > > o shard-mtlp: NOTRUN -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-1/igt@gem_ctx_persistence@engines-hostile@vcs0.html> > (i915#9262 > <https://gitlab.freedesktop.org/drm/intel/issues/9262>) +9 > other tests abort > * > > igt@gem_ctx_persistence@hang: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@gem_ctx_persistence@hang.html> > (i915#8555 <https://gitlab.freedesktop.org/drm/intel/issues/8555>) > * > > igt@gem_ctx_persistence@heartbeat-stop: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-stop.html> > (i915#8555 > <https://gitlab.freedesktop.org/drm/intel/issues/8555>) +1 > other test skip > * > > igt@gem_ctx_persistence@legacy-engines-mixed: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb4/igt@gem_ctx_persistence@legacy-engines-mixed.html> > (fdo#109271 > <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#1099 > <https://gitlab.freedesktop.org/drm/intel/issues/1099>) +1 > other test skip > * > > igt@gem_eio@hibernate: > > o shard-dg2: NOTRUN -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@gem_eio@hibernate.html> > (i915#7975 > <https://gitlab.freedesktop.org/drm/intel/issues/7975> / > i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>) > * > > igt@gem_eio@unwedge-stress: > > o shard-snb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb4/igt@gem_eio@unwedge-stress.html> > (i915#8898 <https://gitlab.freedesktop.org/drm/intel/issues/8898>) > * > > igt@gem_exec_balancer@bonded-semaphore: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@gem_exec_balancer@bonded-semaphore.html> > (i915#4812 <https://gitlab.freedesktop.org/drm/intel/issues/4812>) > * > > igt@gem_exec_balancer@bonded-sync: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@gem_exec_balancer@bonded-sync.html> > (i915#4771 <https://gitlab.freedesktop.org/drm/intel/issues/4771>) > * > > igt@gem_exec_fair@basic-none-vip: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@gem_exec_fair@basic-none-vip.html> > (i915#4473 > <https://gitlab.freedesktop.org/drm/intel/issues/4473> / > i915#4771 > <https://gitlab.freedesktop.org/drm/intel/issues/4771>) +3 > other tests skip > * > > igt@gem_exec_fair@basic-pace-share@rcs0: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html> > (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > * > > igt@gem_exec_fence@submit67: > > o > > shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@gem_exec_fence@submit67.html> > (i915#4812 <https://gitlab.freedesktop.org/drm/intel/issues/4812>) > > o > > shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-18/igt@gem_exec_fence@submit67.html> > (i915#4812 <https://gitlab.freedesktop.org/drm/intel/issues/4812>) > > * > > igt@gem_exec_flush@basic-uc-set-default: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-6/igt@gem_exec_flush@basic-uc-set-default.html> > (i915#3539 > <https://gitlab.freedesktop.org/drm/intel/issues/3539>) +1 > other test skip > * > > igt@gem_exec_flush@basic-wb-rw-before-default: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@gem_exec_flush@basic-wb-rw-before-default.html> > (i915#3539 > <https://gitlab.freedesktop.org/drm/intel/issues/3539> / > i915#4852 > <https://gitlab.freedesktop.org/drm/intel/issues/4852>) +3 > other tests skip > * > > igt@gem_exec_gttfill@multigpu-basic: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@gem_exec_gttfill@multigpu-basic.html> > (i915#7697 <https://gitlab.freedesktop.org/drm/intel/issues/7697>) > * > > igt@gem_exec_params@rsvd2-dirt: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@gem_exec_params@rsvd2-dirt.html> > (i915#5107 <https://gitlab.freedesktop.org/drm/intel/issues/5107>) > * > > igt@gem_exec_reloc@basic-cpu-noreloc: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-noreloc.html> > (i915#3281 <https://gitlab.freedesktop.org/drm/intel/issues/3281>) > * > > igt@gem_exec_reloc@basic-cpu-read-noreloc: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@gem_exec_reloc@basic-cpu-read-noreloc.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/intel/issues/3281>) +17 > other tests skip > * > > igt@gem_exec_reloc@basic-gtt-cpu-active: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@gem_exec_reloc@basic-gtt-cpu-active.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/intel/issues/3281>) +5 > other tests skip > * > > igt@gem_exec_schedule@deep@rcs0: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@gem_exec_schedule@deep@rcs0.html> > (i915#4537 <https://gitlab.freedesktop.org/drm/intel/issues/4537>) > * > > igt@gem_exec_schedule@preempt-queue-chain: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-chain.html> > (i915#4537 > <https://gitlab.freedesktop.org/drm/intel/issues/4537> / > i915#4812 <https://gitlab.freedesktop.org/drm/intel/issues/4812>) > * > > igt@gem_exec_suspend@basic-s3@smem: > > o shard-snb: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb2/igt@gem_exec_suspend@basic-s3@smem.html> > (i915#8841 > <https://gitlab.freedesktop.org/drm/intel/issues/8841>) +8 > other tests dmesg-warn > * > > igt@gem_exec_suspend@basic-s4-devices@lmem0: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html> > -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-3/igt@gem_exec_suspend@basic-s4-devices@lmem0.html> > (i915#7975 > <https://gitlab.freedesktop.org/drm/intel/issues/7975> / > i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>) > * > > igt@gem_fence_thrash@bo-copy: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@gem_fence_thrash@bo-copy.html> > (i915#4860 > <https://gitlab.freedesktop.org/drm/intel/issues/4860>) +2 > other tests skip > * > > igt@gem_lmem_swapping@heavy-verify-multi: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@gem_lmem_swapping@heavy-verify-multi.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/intel/issues/4613>) +7 > other tests skip > * > > igt@gem_mmap@bad-size: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@gem_mmap@bad-size.html> > (i915#4083 > <https://gitlab.freedesktop.org/drm/intel/issues/4083>) +7 > other tests skip > * > > igt@gem_mmap_gtt@close-race: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-14/igt@gem_mmap_gtt@close-race.html> > (i915#4077 > <https://gitlab.freedesktop.org/drm/intel/issues/4077>) +2 > other tests skip > * > > igt@gem_mmap_gtt@cpuset-medium-copy: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy.html> > (i915#4077 > <https://gitlab.freedesktop.org/drm/intel/issues/4077>) +15 > other tests skip > * > > igt@gem_mmap_gtt@cpuset-medium-copy-xy: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html> > (i915#4077 > <https://gitlab.freedesktop.org/drm/intel/issues/4077>) +12 > other tests skip > * > > igt@gem_mmap_wc@copy: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@gem_mmap_wc@copy.html> > (i915#4083 > <https://gitlab.freedesktop.org/drm/intel/issues/4083>) +3 > other tests skip > * > > igt@gem_partial_pwrite_pread@writes-after-reads-uncached: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html> > (i915#3282 > <https://gitlab.freedesktop.org/drm/intel/issues/3282>) +7 > other tests skip > * > > igt@gem_pread@snoop: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-15/igt@gem_pread@snoop.html> > (i915#3282 <https://gitlab.freedesktop.org/drm/intel/issues/3282>) > * > > igt@gem_pxp@display-protected-crc: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@gem_pxp@display-protected-crc.html> > (i915#4270 > <https://gitlab.freedesktop.org/drm/intel/issues/4270>) +5 > other tests skip > * > > igt@gem_pxp@protected-raw-src-copy-not-readible: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html> > (i915#4270 > <https://gitlab.freedesktop.org/drm/intel/issues/4270>) +3 > other tests skip > * > > igt@gem_pxp@reject-modify-context-protection-off-1: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-19/igt@gem_pxp@reject-modify-context-protection-off-1.html> > (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>) > * > > igt@gem_readwrite@beyond-eob: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-10/igt@gem_readwrite@beyond-eob.html> > (i915#3282 > <https://gitlab.freedesktop.org/drm/intel/issues/3282>) +3 > other tests skip > * > > igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html> > (i915#8428 > <https://gitlab.freedesktop.org/drm/intel/issues/8428>) +8 > other tests skip > * > > igt@gem_set_tiling_vs_blt@tiled-to-tiled: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html> > (i915#4079 > <https://gitlab.freedesktop.org/drm/intel/issues/4079>) +2 > other tests skip > * > > igt@gem_set_tiling_vs_gtt: > > o > > shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-17/igt@gem_set_tiling_vs_gtt.html> > (i915#4079 <https://gitlab.freedesktop.org/drm/intel/issues/4079>) > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-1/igt@gem_set_tiling_vs_gtt.html> > (i915#4079 <https://gitlab.freedesktop.org/drm/intel/issues/4079>) > > * > > igt@gem_softpin@evict-snoop-interruptible: > > o > > shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@gem_softpin@evict-snoop-interruptible.html> > (i915#4885 <https://gitlab.freedesktop.org/drm/intel/issues/4885>) > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@gem_softpin@evict-snoop-interruptible.html> > (i915#4885 <https://gitlab.freedesktop.org/drm/intel/issues/4885>) > > * > > igt@gem_unfence_active_buffers: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@gem_unfence_active_buffers.html> > (i915#4879 <https://gitlab.freedesktop.org/drm/intel/issues/4879>) > * > > igt@gem_userptr_blits@access-control: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@gem_userptr_blits@access-control.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/intel/issues/3297>) +4 > other tests skip > * > > igt@gem_userptr_blits@create-destroy-unsync: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@gem_userptr_blits@create-destroy-unsync.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/intel/issues/3297>) +3 > other tests skip > * > > igt@gem_userptr_blits@map-fixed-invalidate-busy: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/intel/issues/3297> / > i915#4880 > <https://gitlab.freedesktop.org/drm/intel/issues/4880>) +1 > other test skip > * > > igt@gem_userptr_blits@unsync-overlap: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-2/igt@gem_userptr_blits@unsync-overlap.html> > (i915#3297 <https://gitlab.freedesktop.org/drm/intel/issues/3297>) > * > > igt@gem_userptr_blits@vma-merge: > > o > > shard-dg2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@gem_userptr_blits@vma-merge.html> > (i915#3318 <https://gitlab.freedesktop.org/drm/intel/issues/3318>) > > o > > shard-snb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb2/igt@gem_userptr_blits@vma-merge.html> > (i915#2724 <https://gitlab.freedesktop.org/drm/intel/issues/2724>) > > * > > igt@gen3_render_tiledy_blits: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@gen3_render_tiledy_blits.html> > (fdo#109289 > <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +9 > other tests skip > * > > igt@gen7_exec_parse@basic-allocation: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-4/igt@gen7_exec_parse@basic-allocation.html> > (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) > * > > igt@gen7_exec_parse@basic-offset: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@gen7_exec_parse@basic-offset.html> > (fdo#109289 > <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +7 > other tests skip > * > > igt@gen9_exec_parse@allowed-all: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@gen9_exec_parse@allowed-all.html> > (i915#2856 > <https://gitlab.freedesktop.org/drm/intel/issues/2856>) +3 > other tests skip > * > > igt@gen9_exec_parse@bb-large: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-3/igt@gen9_exec_parse@bb-large.html> > (i915#2856 > <https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1 > other test skip > * > > igt@gen9_exec_parse@bb-start-param: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html> > (i915#2527 <https://gitlab.freedesktop.org/drm/intel/issues/2527>) > * > > igt@i915_fb_tiling: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@i915_fb_tiling.html> > (i915#4881 <https://gitlab.freedesktop.org/drm/intel/issues/4881>) > * > > igt@i915_hangman@gt-engine-error@vcs0: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-mtlp-7/igt@i915_hangman@gt-engine-error@vcs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@i915_hangman@gt-engine-error@vcs0.html> > (i915#7069 <https://gitlab.freedesktop.org/drm/intel/issues/7069>) > * > > igt@i915_hwmon@hwmon-read: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@i915_hwmon@hwmon-read.html> > (i915#7707 <https://gitlab.freedesktop.org/drm/intel/issues/7707>) > * > > igt@i915_module_load@load: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@i915_module_load@load.html> > (i915#6227 <https://gitlab.freedesktop.org/drm/intel/issues/6227>) > * > > igt@i915_module_load@reload-with-fault-injection: > > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html> > (i915#9200 <https://gitlab.freedesktop.org/drm/intel/issues/9200>) > * > > igt@i915_pm_freq_mult@media-freq@gt1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@i915_pm_freq_mult@media-freq@gt1.html> > (i915#6590 > <https://gitlab.freedesktop.org/drm/intel/issues/6590>) +1 > other test skip > * > > igt@i915_pm_rc6_residency@rc6-idle@rcs0: > > o shard-dg1: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> > (i915#3591 > <https://gitlab.freedesktop.org/drm/intel/issues/3591>) +1 > other test fail > * > > igt@i915_pm_rpm@dpms-lpsp: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@i915_pm_rpm@dpms-lpsp.html> > (i915#1397 > <https://gitlab.freedesktop.org/drm/intel/issues/1397>) +2 > other tests skip > * > > igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html> > (i915#1397 > <https://gitlab.freedesktop.org/drm/intel/issues/1397>) +1 > other test skip > * > > igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html> > (i915#8431 <https://gitlab.freedesktop.org/drm/intel/issues/8431>) > * > > igt@i915_pm_rpm@modeset-lpsp-stress: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@i915_pm_rpm@modeset-lpsp-stress.html> > (i915#1397 <https://gitlab.freedesktop.org/drm/intel/issues/1397>) > * > > igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: > > o shard-dg1: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-18/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html> > (i915#1397 <https://gitlab.freedesktop.org/drm/intel/issues/1397>) > * > > igt@i915_pm_rps@basic-api: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@i915_pm_rps@basic-api.html> > (i915#6621 <https://gitlab.freedesktop.org/drm/intel/issues/6621>) > * > > igt@i915_pm_rps@thresholds-idle-park@gt0: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park@gt0.html> > (i915#8925 <https://gitlab.freedesktop.org/drm/intel/issues/8925>) > * > > igt@i915_pm_rps@waitboost: > > o shard-mtlp: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@i915_pm_rps@waitboost.html> > (i915#8346 <https://gitlab.freedesktop.org/drm/intel/issues/8346>) > * > > igt@i915_query@query-topology-unsupported: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@i915_query@query-topology-unsupported.html> > (fdo#109302 <https://bugs.freedesktop.org/show_bug.cgi?id=109302>) > * > > igt@i915_selftest@mock@memory_region: > > o shard-mtlp: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@i915_selftest@mock@memory_region.html> > (i915#9311 > <https://gitlab.freedesktop.org/drm/intel/issues/9311> / > i915#9312 <https://gitlab.freedesktop.org/drm/intel/issues/9312>) > * > > igt@i915_suspend@basic-s3-without-i915: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-rkl-2/igt@i915_suspend@basic-s3-without-i915.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html> > (fdo#103375 <https://bugs.freedesktop.org/show_bug.cgi?id=103375>) > * > > igt@i915_suspend@sysfs-reader: > > o shard-dg1: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-16/igt@i915_suspend@sysfs-reader.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-19/igt@i915_suspend@sysfs-reader.html> > (fdo#103375 > <https://bugs.freedesktop.org/show_bug.cgi?id=103375>) +2 > other tests fail > * > > igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> > (i915#5190 <https://gitlab.freedesktop.org/drm/intel/issues/5190>) > * > > igt@kms_addfb_basic@basic-x-tiled-legacy: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html> > (i915#4212 > <https://gitlab.freedesktop.org/drm/intel/issues/4212>) +1 > other test skip > * > > igt@kms_addfb_basic@basic-y-tiled-legacy: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html> > (i915#4215 > <https://gitlab.freedesktop.org/drm/intel/issues/4215> / > i915#5190 <https://gitlab.freedesktop.org/drm/intel/issues/5190>) > * > > igt@kms_addfb_basic@bo-too-small-due-to-tiling: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html> > (i915#4212 <https://gitlab.freedesktop.org/drm/intel/issues/4212>) > * > > igt@kms_addfb_basic@invalid-smem-bo-on-discrete: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> > (i915#3826 <https://gitlab.freedesktop.org/drm/intel/issues/3826>) > * > > igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc.html> > (i915#8709 > <https://gitlab.freedesktop.org/drm/intel/issues/8709>) +11 > other tests skip > * > > igt@kms_async_flips@crc@pipe-a-hdmi-a-3: > > o shard-dg2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html> > (i915#8247 > <https://gitlab.freedesktop.org/drm/intel/issues/8247>) +3 > other tests fail > * > > igt@kms_async_flips@invalid-async-flip: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@kms_async_flips@invalid-async-flip.html> > (i915#6228 <https://gitlab.freedesktop.org/drm/intel/issues/6228>) > * > > igt@kms_big_fb@4-tiled-16bpp-rotate-90: > > o > > shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html> > (fdo#111614 > <https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +4 > other tests skip > > o > > shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-17/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html> > (i915#4538 > <https://gitlab.freedesktop.org/drm/intel/issues/4538> / > i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>) > > * > > igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> > (i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>) > * > > igt@kms_big_fb@x-tiled-32bpp-rotate-90: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html> > (fdo#111614 > <https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +4 > other tests skip > * > > igt@kms_big_fb@x-tiled-8bpp-rotate-270: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html> > (fdo#111614 > <https://bugs.freedesktop.org/show_bug.cgi?id=111614> / > i915#3638 <https://gitlab.freedesktop.org/drm/intel/issues/3638>) > * > > igt@kms_big_fb@y-tiled-addfb-size-overflow: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> > (i915#6187 > <https://gitlab.freedesktop.org/drm/intel/issues/6187>) +1 > other test skip > * > > igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> > (i915#3743 > <https://gitlab.freedesktop.org/drm/intel/issues/3743>) +1 > other test fail > * > > igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html> > (fdo#111615 > <https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +9 > other tests skip > * > > igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html> > (i915#5190 > <https://gitlab.freedesktop.org/drm/intel/issues/5190>) +10 > other tests skip > * > > igt@kms_big_fb@yf-tiled-16bpp-rotate-180: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-15/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html> > (i915#4538 <https://gitlab.freedesktop.org/drm/intel/issues/4538>) > * > > igt@kms_big_fb@yf-tiled-32bpp-rotate-180: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html> > (fdo#110723 > <https://bugs.freedesktop.org/show_bug.cgi?id=110723>) +1 > other test skip > * > > igt@kms_big_fb@yf-tiled-addfb: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-17/igt@kms_big_fb@yf-tiled-addfb.html> > (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615>) > * > > igt@kms_big_fb@yf-tiled-addfb-size-overflow: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> > (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615>) > * > > igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> > (i915#4538 > <https://gitlab.freedesktop.org/drm/intel/issues/4538> / > i915#5190 > <https://gitlab.freedesktop.org/drm/intel/issues/5190>) +5 > other tests skip > * > > igt@kms_big_joiner@invalid-modeset: > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-4/igt@kms_big_joiner@invalid-modeset.html> > (i915#2705 <https://gitlab.freedesktop.org/drm/intel/issues/2705>) > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@kms_big_joiner@invalid-modeset.html> > (i915#2705 <https://gitlab.freedesktop.org/drm/intel/issues/2705>) > > * > > igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html> > (i915#3886 > <https://gitlab.freedesktop.org/drm/intel/issues/3886> / > i915#6095 > <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +13 > other tests skip > * > > igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html> > (i915#5354 > <https://gitlab.freedesktop.org/drm/intel/issues/5354> / > i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) > * > > igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +50 > other tests skip > * > > igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs_cc: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-6/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html> > (i915#5354 > <https://gitlab.freedesktop.org/drm/intel/issues/5354> / > i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) > * > > igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-glk3/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html> > (fdo#109271 > <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#3886 > <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +1 > other test skip > * > > igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-apl2/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html> > (fdo#109271 > <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>) > * > > igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-13/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html> > (i915#3689 > <https://gitlab.freedesktop.org/drm/intel/issues/3689> / > i915#3886 > <https://gitlab.freedesktop.org/drm/intel/issues/3886> / > i915#5354 > <https://gitlab.freedesktop.org/drm/intel/issues/5354> / > i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) > * > > igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-7/igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs.html> > (i915#5354 > <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +3 > other tests skip > * > > igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-6/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html> > (i915#3689 > <https://gitlab.freedesktop.org/drm/intel/issues/3689> / > i915#3886 > <https://gitlab.freedesktop.org/drm/intel/issues/3886> / > i915#5354 > <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +14 > other tests skip > * > > igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-2/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs.html> > (i915#5354 > <https://gitlab.freedesktop.org/drm/intel/issues/5354> / > i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) > * > > igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-glk6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs.html> > (fdo#109271 > <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +29 > other tests skip > * > > igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html> > (i915#3689 > <https://gitlab.freedesktop.org/drm/intel/issues/3689> / > i915#5354 > <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +22 > other tests skip > * > > igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-17/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html> > (i915#5354 > <https://gitlab.freedesktop.org/drm/intel/issues/5354> / > i915#6095 > <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +2 > other tests skip > * > > igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-15/igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs.html> > (i915#3689 > <https://gitlab.freedesktop.org/drm/intel/issues/3689> / > i915#5354 > <https://gitlab.freedesktop.org/drm/intel/issues/5354> / > i915#6095 > <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +2 > other tests skip > * > > igt@kms_cdclk@mode-transition-all-outputs: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@kms_cdclk@mode-transition-all-outputs.html> > (i915#4087 > <https://gitlab.freedesktop.org/drm/intel/issues/4087> / > i915#7213 <https://gitlab.freedesktop.org/drm/intel/issues/7213>) > * > > igt@kms_cdclk@plane-scaling@pipe-c-edp-1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-1/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html> > (i915#4087 > <https://gitlab.freedesktop.org/drm/intel/issues/4087>) +3 > other tests skip > * > > igt@kms_chamelium_color@ctm-0-50: > > o > > shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@kms_chamelium_color@ctm-0-50.html> > (fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@kms_chamelium_color@ctm-0-50.html> > (fdo#111827 > <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1 > other test skip > > * > > igt@kms_chamelium_edid@dp-edid-resolution-list: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-resolution-list.html> > (i915#7828 > <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +9 > other tests skip > * > > igt@kms_chamelium_frames@hdmi-cmp-planar-formats: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-13/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html> > (i915#7828 <https://gitlab.freedesktop.org/drm/intel/issues/7828>) > * > > igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-1/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html> > (i915#7828 > <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +14 > other tests skip > * > > igt@kms_content_protection@atomic-dpms: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@kms_content_protection@atomic-dpms.html> > (i915#6944 > <https://gitlab.freedesktop.org/drm/intel/issues/6944>) +1 > other test skip > * > > igt@kms_content_protection@dp-mst-lic-type-0: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-0.html> > (i915#3299 <https://gitlab.freedesktop.org/drm/intel/issues/3299>) > * > > igt@kms_content_protection@dp-mst-type-1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-1.html> > (i915#3299 > <https://gitlab.freedesktop.org/drm/intel/issues/3299>) +1 > other test skip > * > > igt@kms_content_protection@legacy: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-19/igt@kms_content_protection@legacy.html> > (i915#7116 <https://gitlab.freedesktop.org/drm/intel/issues/7116>) > * > > igt@kms_content_protection@srm: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@kms_content_protection@srm.html> > (i915#7118 > <https://gitlab.freedesktop.org/drm/intel/issues/7118>) +3 > other tests skip > * > > igt@kms_content_protection@uevent@pipe-a-dp-4: > > o shard-dg2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html> > (i915#1339 <https://gitlab.freedesktop.org/drm/intel/issues/1339>) > * > > igt@kms_cursor_crc@cursor-onscreen-512x512: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html> > (i915#3359 > <https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 > other test skip > * > > igt@kms_cursor_crc@cursor-random-512x170: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x170.html> > (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>) > * > > igt@kms_cursor_crc@cursor-sliding-32x10: > > o > > shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +6 > other tests skip > > o > > shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-15/igt@kms_cursor_crc@cursor-sliding-32x10.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1 > other test skip > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-32x10.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/intel/issues/3555> / > i915#8814 > <https://gitlab.freedesktop.org/drm/intel/issues/8814>) +4 > other tests skip > > * > > igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-7/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html> > (fdo#103375 <https://bugs.freedesktop.org/show_bug.cgi?id=103375>) > * > > igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html> > (fdo#109274 > <https://bugs.freedesktop.org/show_bug.cgi?id=109274> / > fdo#111767 > <https://bugs.freedesktop.org/show_bug.cgi?id=111767> / > i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354>) > * > > igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> > (i915#4213 <https://gitlab.freedesktop.org/drm/intel/issues/4213>) > * > > igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html> > (fdo#109271 > <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > fdo#111767 <https://bugs.freedesktop.org/show_bug.cgi?id=111767>) > * > > igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: > > o > > shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html> > (fdo#109274 > <https://bugs.freedesktop.org/show_bug.cgi?id=109274> / > i915#5354 > <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +7 > other tests skip > > o > > shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html> > (i915#3546 > <https://gitlab.freedesktop.org/drm/intel/issues/3546>) +3 > other tests skip > > * > > igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html> > (i915#9226 > <https://gitlab.freedesktop.org/drm/intel/issues/9226> / > i915#9261 > <https://gitlab.freedesktop.org/drm/intel/issues/9261>) +1 > other test skip > * > > igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html> > (i915#9227 <https://gitlab.freedesktop.org/drm/intel/issues/9227>) > * > > igt@kms_display_modes@extended-mode-basic: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@kms_display_modes@extended-mode-basic.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/intel/issues/3555> / > i915#8827 <https://gitlab.freedesktop.org/drm/intel/issues/8827>) > * > > igt@kms_display_modes@mst-extended-mode-negative: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-1/igt@kms_display_modes@mst-extended-mode-negative.html> > (i915#8588 <https://gitlab.freedesktop.org/drm/intel/issues/8588>) > * > > igt@kms_draw_crc@draw-method-mmap-gtt: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@kms_draw_crc@draw-method-mmap-gtt.html> > (i915#8812 <https://gitlab.freedesktop.org/drm/intel/issues/8812>) > * > > igt@kms_draw_crc@draw-method-mmap-wc: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-wc.html> > (i915#8812 > <https://gitlab.freedesktop.org/drm/intel/issues/8812>) +1 > other test skip > * > > igt@kms_dsc@dsc-basic: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@kms_dsc@dsc-basic.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/intel/issues/3555> / > i915#3840 > <https://gitlab.freedesktop.org/drm/intel/issues/3840> / > i915#9159 <https://gitlab.freedesktop.org/drm/intel/issues/9159>) > * > > igt@kms_dsc@dsc-with-bpc: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-10/igt@kms_dsc@dsc-with-bpc.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/intel/issues/3555> / > i915#3840 <https://gitlab.freedesktop.org/drm/intel/issues/3840>) > * > > igt@kms_fbcon_fbt@fbc-suspend: > > o shard-dg2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-5/igt@kms_fbcon_fbt@fbc-suspend.html> > (fdo#103375 <https://bugs.freedesktop.org/show_bug.cgi?id=103375>) > * > > igt@kms_flip@2x-absolute-wf_vblank: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@kms_flip@2x-absolute-wf_vblank.html> > (fdo#109274 > <https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +5 > other tests skip > * > > igt@kms_flip@2x-flip-vs-fences: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@kms_flip@2x-flip-vs-fences.html> > (i915#8381 <https://gitlab.freedesktop.org/drm/intel/issues/8381>) > * > > igt@kms_flip@2x-flip-vs-fences-interruptible: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@kms_flip@2x-flip-vs-fences-interruptible.html> > (i915#8381 <https://gitlab.freedesktop.org/drm/intel/issues/8381>) > * > > igt@kms_flip@2x-flip-vs-panning: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@kms_flip@2x-flip-vs-panning.html> > (fdo#111825 > <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +1 > other test skip > * > > igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> > (i915#3637 > <https://gitlab.freedesktop.org/drm/intel/issues/3637>) +9 > other tests skip > * > > igt@kms_flip@flip-vs-rmfb@b-vga1: > > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-snb6/igt@kms_flip@flip-vs-rmfb@b-vga1.html> > -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb7/igt@kms_flip@flip-vs-rmfb@b-vga1.html> > (i915#8865 <https://gitlab.freedesktop.org/drm/intel/issues/8865>) > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html> > (i915#2587 > <https://gitlab.freedesktop.org/drm/intel/issues/2587> / > i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>) > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +2 > other tests skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +1 > other test skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +4 > other tests skip > * > > igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html> > (i915#8810 <https://gitlab.freedesktop.org/drm/intel/issues/8810>) > * > > igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/intel/issues/2672> / > i915#3555 > <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1 > other test skip > * > > igt@kms_force_connector_basic@force-load-detect: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@kms_force_connector_basic@force-load-detect.html> > (fdo#109285 <https://bugs.freedesktop.org/show_bug.cgi?id=109285>) > * > > igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html> > (i915#8708 > <https://gitlab.freedesktop.org/drm/intel/issues/8708>) +17 > other tests skip > * > > igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html> > (i915#8708 > <https://gitlab.freedesktop.org/drm/intel/issues/8708>) +14 > other tests skip > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html> > (fdo#111825 > <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +2 > other tests skip > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html> > (fdo#111825 > <https://bugs.freedesktop.org/show_bug.cgi?id=111825> / > i915#1825 > <https://gitlab.freedesktop.org/drm/intel/issues/1825>) +5 > other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html> > (i915#3458 > <https://gitlab.freedesktop.org/drm/intel/issues/3458>) +13 > other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html> > (i915#8708 > <https://gitlab.freedesktop.org/drm/intel/issues/8708>) +1 > other test skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html> > (i915#1825 > <https://gitlab.freedesktop.org/drm/intel/issues/1825>) +47 > other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html> > (i915#5354 > <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +47 > other tests skip > * > > igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html> > (fdo#110189 > <https://bugs.freedesktop.org/show_bug.cgi?id=110189>) +1 > other test skip > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html> > (i915#3458 > <https://gitlab.freedesktop.org/drm/intel/issues/3458>) +1 > other test skip > * > > igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html> > (fdo#109280 > <https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +1 > other test skip > * > > igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html> > (i915#3023 > <https://gitlab.freedesktop.org/drm/intel/issues/3023>) +3 > other tests skip > * > > igt@kms_hdr@invalid-metadata-sizes: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/intel/issues/3555> / > i915#8228 > <https://gitlab.freedesktop.org/drm/intel/issues/8228>) +1 > other test skip > * > > igt@kms_hdr@static-swap: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@kms_hdr@static-swap.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/intel/issues/3555> / > i915#8228 <https://gitlab.freedesktop.org/drm/intel/issues/8228>) > * > > igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html> > (i915#6403 > <https://gitlab.freedesktop.org/drm/intel/issues/6403>) +3 > other tests skip > * > > igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-mtlp-1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html> > -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html> > (i915#9262 <https://gitlab.freedesktop.org/drm/intel/issues/9262>) > * > > igt@kms_plane_multiple@tiling-y: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@kms_plane_multiple@tiling-y.html> > (i915#8806 <https://gitlab.freedesktop.org/drm/intel/issues/8806>) > * > > igt@kms_plane_multiple@tiling-yf: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-1/igt@kms_plane_multiple@tiling-yf.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/intel/issues/3555> / > i915#8806 <https://gitlab.freedesktop.org/drm/intel/issues/8806>) > * > > igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: > > o shard-rkl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html> > (i915#8292 <https://gitlab.freedesktop.org/drm/intel/issues/8292>) > * > > igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: > > o shard-dg1: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html> > (i915#8292 <https://gitlab.freedesktop.org/drm/intel/issues/8292>) > * > > igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3.html> > (i915#5176 > <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +3 > other tests skip > * > > igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html> > (i915#5176 > <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +5 > other tests skip > * > > igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1.html> > (i915#5176 > <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +9 > other tests skip > * > > igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d-hdmi-a-1: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d-hdmi-a-1.html> > (i915#5176 > <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +11 > other tests skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html> > (fdo#109271 > <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +209 > other tests skip > * > > igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html> > (i915#5235 > <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +7 > other tests skip > * > > igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-dp-1: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-apl2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-dp-1.html> > (fdo#109271 > <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +43 > other tests skip > * > > igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1.html> > (i915#5235 > <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +11 > other tests skip > * > > igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html> > (i915#5235 > <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +15 > other tests skip > * > > igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html> > (i915#5235 > <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +19 > other tests skip > * > > igt@kms_prime@basic-modeset-hybrid: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@kms_prime@basic-modeset-hybrid.html> > (i915#6524 <https://gitlab.freedesktop.org/drm/intel/issues/6524>) > * > > igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: > > o > > shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-glk8/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> > (fdo#109271 > <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > > o > > shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> > (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > > * > > igt@kms_psr@psr2_cursor_mmap_cpu: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-5/igt@kms_psr@psr2_cursor_mmap_cpu.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/intel/issues/1072>) +3 > other tests skip > * > > igt@kms_rotation_crc@bad-pixel-format: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-1/igt@kms_rotation_crc@bad-pixel-format.html> > (i915#4235 > <https://gitlab.freedesktop.org/drm/intel/issues/4235>) +3 > other tests skip > * > > igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html> > (i915#5289 <https://gitlab.freedesktop.org/drm/intel/issues/5289>) > * > > igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-rkl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html> > (i915#8875 <https://gitlab.freedesktop.org/drm/intel/issues/8875>) > * > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: > > o > > shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> > (i915#4235 > <https://gitlab.freedesktop.org/drm/intel/issues/4235> / > i915#5190 <https://gitlab.freedesktop.org/drm/intel/issues/5190>) > > o > > shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> > (fdo#111615 > <https://bugs.freedesktop.org/show_bug.cgi?id=111615> / > i915#5289 <https://gitlab.freedesktop.org/drm/intel/issues/5289>) > > * > > igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d.html> > (i915#5030 > <https://gitlab.freedesktop.org/drm/intel/issues/5030>) +3 > other tests skip > * > > igt@kms_setmode@basic@pipe-a-hdmi-a-1: > > o shard-snb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html> > (i915#5465 > <https://gitlab.freedesktop.org/drm/intel/issues/5465>) +1 > other test fail > * > > igt@kms_setmode@invalid-clone-exclusive-crtc: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/intel/issues/3555> / > i915#8823 <https://gitlab.freedesktop.org/drm/intel/issues/8823>) > * > > igt@kms_universal_plane@cursor-fb-leak-pipe-a: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html> > (i915#9196 <https://gitlab.freedesktop.org/drm/intel/issues/9196>) > * > > igt@kms_universal_plane@cursor-fb-leak-pipe-b: > > o shard-dg1: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-19/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html> > (i915#9196 <https://gitlab.freedesktop.org/drm/intel/issues/9196>) > * > > igt@kms_vblank@pipe-c-wait-forked-busy: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@kms_vblank@pipe-c-wait-forked-busy.html> > (i915#4070 > <https://gitlab.freedesktop.org/drm/intel/issues/4070> / > i915#6768 > <https://gitlab.freedesktop.org/drm/intel/issues/6768>) +1 > other test skip > * > > igt@kms_vblank@pipe-d-query-forked-busy: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-1/igt@kms_vblank@pipe-d-query-forked-busy.html> > (i915#4070 > <https://gitlab.freedesktop.org/drm/intel/issues/4070> / > i915#533 <https://gitlab.freedesktop.org/drm/intel/issues/533> > / i915#6768 > <https://gitlab.freedesktop.org/drm/intel/issues/6768>) +2 > other tests skip > * > > igt@kms_writeback@writeback-invalid-parameters: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@kms_writeback@writeback-invalid-parameters.html> > (i915#2437 <https://gitlab.freedesktop.org/drm/intel/issues/2437>) > * > > igt@perf@buffer-fill@0-rcs0: > > o shard-mtlp: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-3/igt@perf@buffer-fill@0-rcs0.html> > (i915#7823 > <https://gitlab.freedesktop.org/drm/intel/issues/7823> / > i915#9265 <https://gitlab.freedesktop.org/drm/intel/issues/9265>) > * > > igt@perf@gen12-group-concurrent-oa-buffer-read: > > o shard-mtlp: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@perf@gen12-group-concurrent-oa-buffer-read.html> > (i915#9259 <https://gitlab.freedesktop.org/drm/intel/issues/9259>) > * > > igt@perf@polling-small-buf: > > o shard-mtlp: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@perf@polling-small-buf.html> > (i915#1722 <https://gitlab.freedesktop.org/drm/intel/issues/1722>) > * > > igt@perf_pmu@cpu-hotplug: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-2/igt@perf_pmu@cpu-hotplug.html> > (i915#8850 <https://gitlab.freedesktop.org/drm/intel/issues/8850>) > * > > igt@perf_pmu@event-wait@rcs0: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@perf_pmu@event-wait@rcs0.html> > (fdo#112283 <https://bugs.freedesktop.org/show_bug.cgi?id=112283>) > * > > igt@perf_pmu@frequency@gt0: > > o shard-dg2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@perf_pmu@frequency@gt0.html> > (i915#6806 <https://gitlab.freedesktop.org/drm/intel/issues/6806>) > * > > igt@perf_pmu@module-unload: > > o shard-dg2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-6/igt@perf_pmu@module-unload.html> > (i915#5793 > <https://gitlab.freedesktop.org/drm/intel/issues/5793> / > i915#6121 <https://gitlab.freedesktop.org/drm/intel/issues/6121>) > * > > igt@perf_pmu@rc6-suspend: > > o shard-mtlp: NOTRUN -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@perf_pmu@rc6-suspend.html> > (i915#9262 > <https://gitlab.freedesktop.org/drm/intel/issues/9262> / > i915#9268 <https://gitlab.freedesktop.org/drm/intel/issues/9268>) > * > > igt@prime_vgem@basic-blt: > > o shard-mtlp: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-8/igt@prime_vgem@basic-blt.html> > (i915#8445 > <https://gitlab.freedesktop.org/drm/intel/issues/8445>) +1 > other test fail > * > > igt@prime_vgem@basic-read: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@prime_vgem@basic-read.html> > (i915#3708 <https://gitlab.freedesktop.org/drm/intel/issues/3708>) > * > > igt@prime_vgem@basic-write: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-3/igt@prime_vgem@basic-write.html> > (i915#3291 > <https://gitlab.freedesktop.org/drm/intel/issues/3291> / > i915#3708 <https://gitlab.freedesktop.org/drm/intel/issues/3708>) > * > > igt@prime_vgem@fence-flip-hang: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-1/igt@prime_vgem@fence-flip-hang.html> > (i915#3708 > <https://gitlab.freedesktop.org/drm/intel/issues/3708>) +1 > other test skip > * > > igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-19/igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync.html> > (i915#2575 > <https://gitlab.freedesktop.org/drm/intel/issues/2575>) +2 > other tests skip > * > > igt@v3d/v3d_perfmon@create-perfmon-0: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-7/igt@v3d/v3d_perfmon@create-perfmon-0.html> > (fdo#109315 > <https://bugs.freedesktop.org/show_bug.cgi?id=109315>) +1 > other test skip > * > > igt@v3d/v3d_submit_cl@bad-multisync-out-sync: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-6/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html> > (i915#2575 > <https://gitlab.freedesktop.org/drm/intel/issues/2575>) +12 > other tests skip > * > > igt@v3d/v3d_submit_csd@bad-bo: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-7/igt@v3d/v3d_submit_csd@bad-bo.html> > (i915#2575 > <https://gitlab.freedesktop.org/drm/intel/issues/2575>) +15 > other tests skip > * > > igt@vc4/vc4_mmap@mmap-bo: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-5/igt@vc4/vc4_mmap@mmap-bo.html> > (i915#7711 > <https://gitlab.freedesktop.org/drm/intel/issues/7711>) +7 > other tests skip > * > > igt@vc4/vc4_perfmon@destroy-valid-perfmon: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-14/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html> > (i915#7711 <https://gitlab.freedesktop.org/drm/intel/issues/7711>) > * > > igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html> > (i915#7711 > <https://gitlab.freedesktop.org/drm/intel/issues/7711>) +10 > other tests skip > * > > igt@vc4/vc4_tiling@set-bad-modifier: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-2/igt@vc4/vc4_tiling@set-bad-modifier.html> > (i915#7711 <https://gitlab.freedesktop.org/drm/intel/issues/7711>) > > > Possible fixes > > * > > igt@core_hotunplug@unbind-rebind: > > o shard-snb: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-snb1/igt@core_hotunplug@unbind-rebind.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-snb7/igt@core_hotunplug@unbind-rebind.html> > * > > igt@gem_ctx_exec@basic-nohangcheck: > > o shard-tglu: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html> > (i915#6268 > <https://gitlab.freedesktop.org/drm/intel/issues/6268>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html> > * > > igt@gem_eio@reset-stress: > > o shard-dg1: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-14/igt@gem_eio@reset-stress.html> > (i915#5784 > <https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-17/igt@gem_eio@reset-stress.html> > * > > igt@gem_exec_endless@dispatch@vecs0: > > o shard-dg1: TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-16/igt@gem_exec_endless@dispatch@vecs0.html> > (i915#3778 > <https://gitlab.freedesktop.org/drm/intel/issues/3778>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-15/igt@gem_exec_endless@dispatch@vecs0.html> > * > > igt@gem_exec_fair@basic-flow@rcs0: > > o shard-tglu: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-6/igt@gem_exec_fair@basic-flow@rcs0.html> > (i915#2842 > <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-5/igt@gem_exec_fair@basic-flow@rcs0.html> > * > > igt@gem_lmem_swapping@smem-oom@lmem0: > > o shard-dg1: TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html> > (i915#5493 > <https://gitlab.freedesktop.org/drm/intel/issues/5493>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html> > * > > igt@gen9_exec_parse@allowed-single: > > o shard-apl: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-apl4/igt@gen9_exec_parse@allowed-single.html> > (i915#5566 > <https://gitlab.freedesktop.org/drm/intel/issues/5566>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-apl2/igt@gen9_exec_parse@allowed-single.html> > * > > igt@i915_pm_rpm@dpms-non-lpsp: > > o > > shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html> > (i915#1397 > <https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-rkl-1/igt@i915_pm_rpm@dpms-non-lpsp.html> > > o > > shard-dg1: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html> > (i915#1397 > <https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-15/igt@i915_pm_rpm@dpms-non-lpsp.html> > +1 other test pass > > * > > igt@i915_pm_rpm@modeset-non-lpsp: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html> > (i915#1397 > <https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@i915_pm_rpm@modeset-non-lpsp.html> > * > > igt@i915_selftest@live@gt_heartbeat: > > o shard-glk: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-glk2/igt@i915_selftest@live@gt_heartbeat.html> > (i915#5334 > <https://gitlab.freedesktop.org/drm/intel/issues/5334>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-glk7/igt@i915_selftest@live@gt_heartbeat.html> > * > > igt@i915_suspend@basic-s3-without-i915: > > o shard-dg1: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-17/igt@i915_suspend@basic-s3-without-i915.html> > (i915#4391 > <https://gitlab.freedesktop.org/drm/intel/issues/4391> / > i915#4423 > <https://gitlab.freedesktop.org/drm/intel/issues/4423>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-15/igt@i915_suspend@basic-s3-without-i915.html> > * > > igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_gen12_rc_ccs: > > o shard-dg1: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-17/igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_gen12_rc_ccs.html> > (i915#4423 > <https://gitlab.freedesktop.org/drm/intel/issues/4423>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-16/igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_gen12_rc_ccs.html> > * > > igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > > o shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> > (i915#2346 > <https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> > * > > igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > > o shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> > (i915#2346 > <https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> > * > > igt@kms_flip@flip-vs-suspend@b-edp1: > > o shard-mtlp: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-mtlp-4/igt@kms_flip@flip-vs-suspend@b-edp1.html> > (i915#9262 > <https://gitlab.freedesktop.org/drm/intel/issues/9262>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-6/igt@kms_flip@flip-vs-suspend@b-edp1.html> > +2 other tests pass > * > > igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: > > o shard-dg2: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html> > (i915#6880 > <https://gitlab.freedesktop.org/drm/intel/issues/6880>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html> > * > > igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1: > > o shard-apl: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html> > (i915#180 > <https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html> > * > > igt@kms_plane@pixel-format@pipe-a-planes: > > o shard-glk: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-glk2/igt@kms_plane@pixel-format@pipe-a-planes.html> > (i915#118 > <https://gitlab.freedesktop.org/drm/intel/issues/118>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-glk6/igt@kms_plane@pixel-format@pipe-a-planes.html> > * > > {igt@kms_pm_dc@dc6-dpms}: > > o shard-tglu: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html> > (i915#9295 > <https://gitlab.freedesktop.org/drm/intel/issues/9295>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html> > * > > igt@kms_vblank@pipe-b-ts-continuation-suspend: > > o shard-dg2: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-5/igt@kms_vblank@pipe-b-ts-continuation-suspend.html> > (fdo#103375 > <https://bugs.freedesktop.org/show_bug.cgi?id=103375>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-5/igt@kms_vblank@pipe-b-ts-continuation-suspend.html> > +1 other test pass > * > > igt@perf_pmu@busy-double-start@vecs1: > > o shard-dg2: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html> > (i915#4349 > <https://gitlab.freedesktop.org/drm/intel/issues/4349>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html> > +3 other tests pass > > > Warnings > > * > > igt@device_reset@unbind-reset-rebind: > > o shard-dg1: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html> > (i915#4983 > <https://gitlab.freedesktop.org/drm/intel/issues/4983> / > i915#7461 > <https://gitlab.freedesktop.org/drm/intel/issues/7461>) -> > INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-14/igt@device_reset@unbind-reset-rebind.html> > (i915#4983 <https://gitlab.freedesktop.org/drm/intel/issues/4983>) > * > > igt@i915_pm_rc6_residency@rc6-idle@bcs0: > > o shard-tglu: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html> > (i915#2681 > <https://gitlab.freedesktop.org/drm/intel/issues/2681> / > i915#3591 > <https://gitlab.freedesktop.org/drm/intel/issues/3591>) -> > WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html> > (i915#2681 <https://gitlab.freedesktop.org/drm/intel/issues/2681>) > * > > igt@kms_async_flips@crc@pipe-d-edp-1: > > o shard-mtlp: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-mtlp-4/igt@kms_async_flips@crc@pipe-d-edp-1.html> > (i915#8561 > <https://gitlab.freedesktop.org/drm/intel/issues/8561>) -> > FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-5/igt@kms_async_flips@crc@pipe-d-edp-1.html> > (i915#8247 > <https://gitlab.freedesktop.org/drm/intel/issues/8247>) +2 > other tests fail > * > > igt@kms_psr@cursor_plane_move: > > o shard-dg1: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-15/igt@kms_psr@cursor_plane_move.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/intel/issues/1072>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg1-16/igt@kms_psr@cursor_plane_move.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/intel/issues/1072> / > i915#4078 > <https://gitlab.freedesktop.org/drm/intel/issues/4078>) +1 > other test skip > * > > igt@perf_pmu@rc6@other-idle-gt1: > > o shard-mtlp: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-mtlp-2/igt@perf_pmu@rc6@other-idle-gt1.html> > (i915#8537 > <https://gitlab.freedesktop.org/drm/intel/issues/8537>) -> > INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@perf_pmu@rc6@other-idle-gt1.html> > (i915#9268 <https://gitlab.freedesktop.org/drm/intel/issues/9268>) > * > > igt@perf_pmu@rc6@runtime-pm-long-gt1: > > o shard-mtlp: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-mtlp-2/igt@perf_pmu@rc6@runtime-pm-long-gt1.html> > (i915#8537 > <https://gitlab.freedesktop.org/drm/intel/issues/8537>) -> > DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-mtlp-4/igt@perf_pmu@rc6@runtime-pm-long-gt1.html> > (i915#9335 > <https://gitlab.freedesktop.org/drm/intel/issues/9335>) +1 > other test dmesg-warn > * > > igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: > > o shard-dg2: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html> > (i915#5493 > <https://gitlab.freedesktop.org/drm/intel/issues/5493>) -> > CRASH > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html> > (i915#9351 <https://gitlab.freedesktop.org/drm/intel/issues/9351>) > > {name}: This element is suppressed. This means it is ignored when > computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > Build changes > > * CI: CI-20190529 -> None > * IGT: IGT_7493 -> IGTPW_9823 > * Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_13651: 61b71c3f061a44a6ab1dcf756918886aa03a5480 @ > git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_9823: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9823/index.html > IGT_7493: 2517e42d612e0c1ca096acf8b5f6177f7ef4bce7 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ > git://anongit.freedesktop.org/piglit > [-- Attachment #2: Type: text/html, Size: 150370 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 0/4] Ignore some tests on MTL which 2023-09-18 16:47 [igt-dev] [PATCH i-g-t 0/4] Ignore some tests on MTL which Nirmoy Das ` (6 preceding siblings ...) 2023-09-20 0:17 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-09-20 8:57 ` Andi Shyti 2023-09-22 11:25 ` [igt-dev] ✗ Fi.CI.BAT: failure for Ignore some tests on MTL which (rev5) Patchwork 8 siblings, 0 replies; 16+ messages in thread From: Andi Shyti @ 2023-09-20 8:57 UTC (permalink / raw) To: Nirmoy Das; +Cc: igt-dev, oak.zeng Hi Nirmoy, On Mon, Sep 18, 2023 at 06:47:43PM +0200, Nirmoy Das wrote: > Because of a HW bug in MTL it is recommended to do GGTT > update using MI_UPDATE_GGTT[1] which happens through BCS0 > engine. If some test blocks bcs with a spinner then such > tests will fail. This series ignore those tests on MTL. > > v2: use macro, > s/gem_has_ggtt_bind/gem_engine_can_block_ggtt_binder(Kamil) > v3: Skip gem_ctx_schedule@in-order@bcs as well. > Add two more tests in gem_spin_batch as hinted by the latest > results from the i915 CI. > > [1]https://patchwork.freedesktop.org/series/123329/ > > Nirmoy Das (4): > lib/igt_gt: Add gem_engine_can_block_ggtt_binder > tests/intel/gem_ctx_shared: Skip some test on MTL > tests/intel/gem_ctx_schedule: Skip some test on MTL > tests/intel/gem_spin_batch: Skip some test on MTL for all patches: Acked-by: Andi Shyti <andi.shyti@linux.intel.com> Andi ^ permalink raw reply [flat|nested] 16+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for Ignore some tests on MTL which (rev5) 2023-09-18 16:47 [igt-dev] [PATCH i-g-t 0/4] Ignore some tests on MTL which Nirmoy Das ` (7 preceding siblings ...) 2023-09-20 8:57 ` [igt-dev] [PATCH i-g-t 0/4] Ignore some tests on MTL which Andi Shyti @ 2023-09-22 11:25 ` Patchwork 8 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2023-09-22 11:25 UTC (permalink / raw) To: Nirmoy Das; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 229 bytes --] == Series Details == Series: Ignore some tests on MTL which (rev5) URL : https://patchwork.freedesktop.org/series/123602/ State : failure == Summary == Series 123602 revision 5 was fully merged or fully failed: no git log [-- Attachment #2: Type: text/html, Size: 698 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2023-09-22 11:25 UTC | newest] Thread overview: 16+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-18 16:47 [igt-dev] [PATCH i-g-t 0/4] Ignore some tests on MTL which Nirmoy Das 2023-09-18 16:47 ` [igt-dev] [PATCH i-g-t 1/4] lib/igt_gt: Add gem_engine_can_block_ggtt_binder Nirmoy Das 2023-09-18 16:47 ` [igt-dev] [PATCH i-g-t 2/4] tests/intel/gem_ctx_shared: Skip some test on MTL Nirmoy Das 2023-09-18 16:47 ` [igt-dev] [PATCH i-g-t 3/4] tests/intel/gem_ctx_schedule: " Nirmoy Das 2023-09-18 17:00 ` Nirmoy Das 2023-09-19 10:20 ` Kamil Konieczny 2023-09-19 14:17 ` Nirmoy Das 2023-09-20 7:54 ` Kamil Konieczny 2023-09-18 16:47 ` [igt-dev] [PATCH i-g-t 4/4] tests/intel/gem_spin_batch: " Nirmoy Das 2023-09-20 7:51 ` Kamil Konieczny 2023-09-18 21:40 ` [igt-dev] ✓ Fi.CI.BAT: success for Ignore some tests on MTL which (rev4) Patchwork 2023-09-18 22:44 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-09-20 0:17 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-09-22 10:29 ` Nirmoy Das 2023-09-20 8:57 ` [igt-dev] [PATCH i-g-t 0/4] Ignore some tests on MTL which Andi Shyti 2023-09-22 11:25 ` [igt-dev] ✗ Fi.CI.BAT: failure for Ignore some tests on MTL which (rev5) Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox