* [igt-dev] [PATCH i-g-t 2/3] tests/intel/gem_ctx_shared: Skip some test on MTL
2023-09-13 9:42 [igt-dev] [PATCH i-g-t 0/3] Ignore some tests on MTL which Nirmoy Das
@ 2023-09-13 9:42 ` Nirmoy Das
2023-09-14 13:50 ` Kamil Konieczny
0 siblings, 1 reply; 13+ messages in thread
From: Nirmoy Das @ 2023-09-13 9:42 UTC (permalink / raw)
To: igt-dev; +Cc: andi.shyti, Nirmoy Das
We do GGTT update on MTL using bcs engine, blocking that would
will fail the test so skip such subtests on bcs engine for MTL.
Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
---
tests/intel/gem_ctx_shared.c | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/tests/intel/gem_ctx_shared.c b/tests/intel/gem_ctx_shared.c
index d24ae5483..bad032417 100644
--- a/tests/intel/gem_ctx_shared.c
+++ b/tests/intel/gem_ctx_shared.c
@@ -1105,22 +1105,26 @@ igt_main
igt_subtest_with_dynamic("Q-independent") {
for_each_queue(e, i915, &cfg)
- independent(i915, &cfg, e, 0);
+ if (!(gem_has_ggtt_bind(i915) && e->class == I915_ENGINE_CLASS_COPY))
+ independent(i915, &cfg, e, 0);
}
igt_subtest_with_dynamic("Q-in-order") {
for_each_queue(e, i915, &cfg)
- reorder(i915, &cfg, e->flags, EQUAL);
+ if (!(gem_has_ggtt_bind(i915) && e->class == I915_ENGINE_CLASS_COPY))
+ reorder(i915, &cfg, e->flags, EQUAL);
}
igt_subtest_with_dynamic("Q-out-order") {
for_each_queue(e, i915, &cfg)
- reorder(i915, &cfg, e->flags, 0);
+ if (!(gem_has_ggtt_bind(i915) && e->class == I915_ENGINE_CLASS_COPY))
+ reorder(i915, &cfg, e->flags, 0);
}
igt_subtest_with_dynamic("Q-promotion") {
for_each_queue(e, i915, &cfg)
- promotion(i915, &cfg, e->flags);
+ if (!(gem_has_ggtt_bind(i915) && e->class == I915_ENGINE_CLASS_COPY))
+ promotion(i915, &cfg, e->flags);
}
}
--
2.41.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/3] tests/intel/gem_ctx_shared: Skip some test on MTL
2023-09-13 9:42 ` [igt-dev] [PATCH i-g-t 2/3] tests/intel/gem_ctx_shared: Skip some test on MTL Nirmoy Das
@ 2023-09-14 13:50 ` Kamil Konieczny
2023-09-14 19:13 ` Nirmoy Das
0 siblings, 1 reply; 13+ messages in thread
From: Kamil Konieczny @ 2023-09-14 13:50 UTC (permalink / raw)
To: igt-dev; +Cc: andi.shyti, Nirmoy Das
Hi Nirmoy,
On 2023-09-13 at 11:42:51 +0200, Nirmoy Das wrote:
> We do GGTT update on MTL using bcs engine, blocking that would
> will fail the test so skip such subtests on bcs engine for MTL.
>
> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
> ---
> tests/intel/gem_ctx_shared.c | 12 ++++++++----
> 1 file changed, 8 insertions(+), 4 deletions(-)
>
> diff --git a/tests/intel/gem_ctx_shared.c b/tests/intel/gem_ctx_shared.c
> index d24ae5483..bad032417 100644
> --- a/tests/intel/gem_ctx_shared.c
> +++ b/tests/intel/gem_ctx_shared.c
> @@ -1105,22 +1105,26 @@ igt_main
>
> igt_subtest_with_dynamic("Q-independent") {
> for_each_queue(e, i915, &cfg)
> - independent(i915, &cfg, e, 0);
> + if (!(gem_has_ggtt_bind(i915) && e->class == I915_ENGINE_CLASS_COPY))
------------------------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
imho it is better to make it a bool function (preferable) or macro
and use it like:
if (can_use_engine(i915, e))
bool can_use_engine(int fd, engine *e)
{
return !(e->class == I915_ENGINE_CLASS_COPY && gem_has_ggtt_bind(i915));
}
Same goes for your last patch, name of this function could be
better.
Regards,
Kamil
> + independent(i915, &cfg, e, 0);
> }
>
> igt_subtest_with_dynamic("Q-in-order") {
> for_each_queue(e, i915, &cfg)
> - reorder(i915, &cfg, e->flags, EQUAL);
> + if (!(gem_has_ggtt_bind(i915) && e->class == I915_ENGINE_CLASS_COPY))
> + reorder(i915, &cfg, e->flags, EQUAL);
> }
>
> igt_subtest_with_dynamic("Q-out-order") {
> for_each_queue(e, i915, &cfg)
> - reorder(i915, &cfg, e->flags, 0);
> + if (!(gem_has_ggtt_bind(i915) && e->class == I915_ENGINE_CLASS_COPY))
> + reorder(i915, &cfg, e->flags, 0);
> }
>
> igt_subtest_with_dynamic("Q-promotion") {
> for_each_queue(e, i915, &cfg)
> - promotion(i915, &cfg, e->flags);
> + if (!(gem_has_ggtt_bind(i915) && e->class == I915_ENGINE_CLASS_COPY))
> + promotion(i915, &cfg, e->flags);
> }
> }
>
> --
> 2.41.0
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/3] tests/intel/gem_ctx_shared: Skip some test on MTL
2023-09-14 13:50 ` Kamil Konieczny
@ 2023-09-14 19:13 ` Nirmoy Das
0 siblings, 0 replies; 13+ messages in thread
From: Nirmoy Das @ 2023-09-14 19:13 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, Nirmoy Das, andi.shyti
Hi Kamil,
On 9/14/2023 3:50 PM, Kamil Konieczny wrote:
> Hi Nirmoy,
>
> On 2023-09-13 at 11:42:51 +0200, Nirmoy Das wrote:
>> We do GGTT update on MTL using bcs engine, blocking that would
>> will fail the test so skip such subtests on bcs engine for MTL.
>>
>> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
>> ---
>> tests/intel/gem_ctx_shared.c | 12 ++++++++----
>> 1 file changed, 8 insertions(+), 4 deletions(-)
>>
>> diff --git a/tests/intel/gem_ctx_shared.c b/tests/intel/gem_ctx_shared.c
>> index d24ae5483..bad032417 100644
>> --- a/tests/intel/gem_ctx_shared.c
>> +++ b/tests/intel/gem_ctx_shared.c
>> @@ -1105,22 +1105,26 @@ igt_main
>>
>> igt_subtest_with_dynamic("Q-independent") {
>> for_each_queue(e, i915, &cfg)
>> - independent(i915, &cfg, e, 0);
>> + if (!(gem_has_ggtt_bind(i915) && e->class == I915_ENGINE_CLASS_COPY))
> ------------------------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> imho it is better to make it a bool function (preferable) or macro
> and use it like:
> if (can_use_engine(i915, e))
>
> bool can_use_engine(int fd, engine *e)
> {
> return !(e->class == I915_ENGINE_CLASS_COPY && gem_has_ggtt_bind(i915));
> }
>
> Same goes for your last patch, name of this function could be
> better.
Will do that in next rev.
Thanks,
Nirmoy
> Regards,
> Kamil
>
>> + independent(i915, &cfg, e, 0);
>> }
>>
>> igt_subtest_with_dynamic("Q-in-order") {
>> for_each_queue(e, i915, &cfg)
>> - reorder(i915, &cfg, e->flags, EQUAL);
>> + if (!(gem_has_ggtt_bind(i915) && e->class == I915_ENGINE_CLASS_COPY))
>> + reorder(i915, &cfg, e->flags, EQUAL);
>> }
>>
>> igt_subtest_with_dynamic("Q-out-order") {
>> for_each_queue(e, i915, &cfg)
>> - reorder(i915, &cfg, e->flags, 0);
>> + if (!(gem_has_ggtt_bind(i915) && e->class == I915_ENGINE_CLASS_COPY))
>> + reorder(i915, &cfg, e->flags, 0);
>> }
>>
>> igt_subtest_with_dynamic("Q-promotion") {
>> for_each_queue(e, i915, &cfg)
>> - promotion(i915, &cfg, e->flags);
>> + if (!(gem_has_ggtt_bind(i915) && e->class == I915_ENGINE_CLASS_COPY))
>> + promotion(i915, &cfg, e->flags);
>> }
>> }
>>
>> --
>> 2.41.0
>>
^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] [PATCH i-g-t v2 0/3] Ignore some tests on MTL which
@ 2023-09-14 20:18 Nirmoy Das
2023-09-14 20:18 ` [igt-dev] [PATCH i-g-t 1/3] lib/igt_gt: Add gem_engine_can_block_ggtt_binder Nirmoy Das
` (5 more replies)
0 siblings, 6 replies; 13+ messages in thread
From: Nirmoy Das @ 2023-09-14 20:18 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)
[1]https://patchwork.freedesktop.org/series/123329/
Nirmoy Das (3):
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
lib/igt_gt.c | 15 +++++++++++++
lib/igt_gt.h | 2 ++
tests/intel/gem_ctx_shared.c | 14 +++++++++----
tests/intel/gem_exec_schedule.c | 37 ++++++++++++++++++++-------------
4 files changed, 49 insertions(+), 19 deletions(-)
--
2.41.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] [PATCH i-g-t 1/3] lib/igt_gt: Add gem_engine_can_block_ggtt_binder
2023-09-14 20:18 [igt-dev] [PATCH i-g-t v2 0/3] Ignore some tests on MTL which Nirmoy Das
@ 2023-09-14 20:18 ` Nirmoy Das
2023-09-15 18:00 ` Kamil Konieczny
2023-09-14 20:18 ` [igt-dev] [PATCH i-g-t 2/3] tests/intel/gem_ctx_shared: Skip some test on MTL Nirmoy Das
` (4 subsequent siblings)
5 siblings, 1 reply; 13+ messages in thread
From: Nirmoy Das @ 2023-09-14 20:18 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>
---
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] 13+ messages in thread
* [igt-dev] [PATCH i-g-t 2/3] tests/intel/gem_ctx_shared: Skip some test on MTL
2023-09-14 20:18 [igt-dev] [PATCH i-g-t v2 0/3] Ignore some tests on MTL which Nirmoy Das
2023-09-14 20:18 ` [igt-dev] [PATCH i-g-t 1/3] lib/igt_gt: Add gem_engine_can_block_ggtt_binder Nirmoy Das
@ 2023-09-14 20:18 ` Nirmoy Das
2023-09-15 18:02 ` Kamil Konieczny
2023-09-14 20:18 ` [igt-dev] [PATCH i-g-t 3/3] tests/intel/gem_ctx_schedule: " Nirmoy Das
` (3 subsequent siblings)
5 siblings, 1 reply; 13+ messages in thread
From: Nirmoy Das @ 2023-09-14 20:18 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
will fail the test so skip such subtests on bcs engine for MTL.
Signed-off-by: Nirmoy Das <nirmoy.das@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] 13+ messages in thread
* [igt-dev] [PATCH i-g-t 3/3] tests/intel/gem_ctx_schedule: Skip some test on MTL
2023-09-14 20:18 [igt-dev] [PATCH i-g-t v2 0/3] Ignore some tests on MTL which Nirmoy Das
2023-09-14 20:18 ` [igt-dev] [PATCH i-g-t 1/3] lib/igt_gt: Add gem_engine_can_block_ggtt_binder Nirmoy Das
2023-09-14 20:18 ` [igt-dev] [PATCH i-g-t 2/3] tests/intel/gem_ctx_shared: Skip some test on MTL Nirmoy Das
@ 2023-09-14 20:18 ` Nirmoy Das
2023-09-15 18:04 ` Kamil Konieczny
2023-09-14 21:52 ` [igt-dev] ✓ Fi.CI.BAT: success for Ignore some tests on MTL which (rev3) Patchwork
` (2 subsequent siblings)
5 siblings, 1 reply; 13+ messages in thread
From: Nirmoy Das @ 2023-09-14 20:18 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
will fail the test so skip such subtests on bcs engine for MTL.
Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
---
tests/intel/gem_exec_schedule.c | 37 ++++++++++++++++++++-------------
1 file changed, 22 insertions(+), 15 deletions(-)
diff --git a/tests/intel/gem_exec_schedule.c b/tests/intel/gem_exec_schedule.c
index c94988d36..607a5b21f 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);
}
@@ -3615,10 +3622,10 @@ igt_main
test_each_engine_store("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] 13+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Ignore some tests on MTL which (rev3)
2023-09-14 20:18 [igt-dev] [PATCH i-g-t v2 0/3] Ignore some tests on MTL which Nirmoy Das
` (2 preceding siblings ...)
2023-09-14 20:18 ` [igt-dev] [PATCH i-g-t 3/3] tests/intel/gem_ctx_schedule: " Nirmoy Das
@ 2023-09-14 21:52 ` Patchwork
2023-09-14 22:20 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
2023-09-15 4:51 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2023-09-14 21:52 UTC (permalink / raw)
To: Nirmoy Das; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6126 bytes --]
== Series Details ==
Series: Ignore some tests on MTL which (rev3)
URL : https://patchwork.freedesktop.org/series/123602/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13633 -> IGTPW_9792
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/index.html
Participating hosts (40 -> 40)
------------------------------
Additional (1): fi-kbl-soraka
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9792 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- fi-hsw-4770: NOTRUN -> [SKIP][1] ([fdo#109271])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/fi-hsw-4770/igt@debugfs_test@basic-hwmon.html
* igt@gem_busy@busy@all-engines:
- bat-mtlp-8: [PASS][2] -> [ABORT][3] ([i915#9121] / [i915#9262])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/bat-mtlp-8/igt@gem_busy@busy@all-engines.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/bat-mtlp-8/igt@gem_busy@busy@all-engines.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- bat-dg2-9: [PASS][4] -> [INCOMPLETE][5] ([i915#9275])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#2190])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#4613]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@i915_selftest@live@gt_pm:
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][8] ([i915#1886] / [i915#7913])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@kms_dsc@dsc-basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][9] ([fdo#109271]) +9 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html
* igt@kms_hdmi_inject@inject-audio:
- fi-kbl-guc: [PASS][10] -> [FAIL][11] ([IGT#3] / [i915#6121])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][12] ([i915#1845]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
#### Possible fixes ####
* igt@i915_selftest@live@execlists:
- fi-bsw-n3050: [ABORT][13] ([i915#7911] / [i915#7913]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
* igt@i915_suspend@basic-s2idle-without-i915:
- bat-dg2-9: [WARN][15] -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/bat-dg2-9/igt@i915_suspend@basic-s2idle-without-i915.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/bat-dg2-9/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- {bat-dg2-13}: [DMESG-WARN][17] ([i915#7952]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@dp-crc-fast:
- {bat-dg2-13}: [DMESG-WARN][19] ([Intel XE#485]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3
[Intel XE#485]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/485
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[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#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952
[i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121
[i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
[i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7488 -> IGTPW_9792
CI-20190529: 20190529
CI_DRM_13633: 5cf0e59ecc1424e51a5f5cf2f26682b5dcea5a25 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9792: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/index.html
IGT_7488: 099e058c5dfb7a49942edf03cae88a52a77077a3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
-igt@kms_frontbuffer_tracking@fbc-1p-rte
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/index.html
[-- Attachment #2: Type: text/html, Size: 7313 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for Ignore some tests on MTL which (rev3)
2023-09-14 20:18 [igt-dev] [PATCH i-g-t v2 0/3] Ignore some tests on MTL which Nirmoy Das
` (3 preceding siblings ...)
2023-09-14 21:52 ` [igt-dev] ✓ Fi.CI.BAT: success for Ignore some tests on MTL which (rev3) Patchwork
@ 2023-09-14 22:20 ` Patchwork
2023-09-15 4:51 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2023-09-14 22:20 UTC (permalink / raw)
To: Nirmoy Das; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1222 bytes --]
== Series Details ==
Series: Ignore some tests on MTL which (rev3)
URL : https://patchwork.freedesktop.org/series/123602/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7488_BAT -> XEIGTPW_9792_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_9792_BAT that come from known issues:
### IGT changes ###
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524
Build changes
-------------
* IGT: IGT_7488 -> IGTPW_9792
IGTPW_9792: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/index.html
IGT_7488: 099e058c5dfb7a49942edf03cae88a52a77077a3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-373-aeac46cfaebff413254ac07837b97370c7ed3957: aeac46cfaebff413254ac07837b97370c7ed3957
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9792/index.html
[-- Attachment #2: Type: text/html, Size: 1697 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Ignore some tests on MTL which (rev3)
2023-09-14 20:18 [igt-dev] [PATCH i-g-t v2 0/3] Ignore some tests on MTL which Nirmoy Das
` (4 preceding siblings ...)
2023-09-14 22:20 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
@ 2023-09-15 4:51 ` Patchwork
5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2023-09-15 4:51 UTC (permalink / raw)
To: Nirmoy Das; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 85224 bytes --]
== Series Details ==
Series: Ignore some tests on MTL which (rev3)
URL : https://patchwork.freedesktop.org/series/123602/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13633_full -> IGTPW_9792_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9792_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9792_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_9792/index.html
Participating hosts (9 -> 10)
------------------------------
Additional (1): shard-tglu0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9792_full:
### IGT changes ###
#### Possible regressions ####
* igt@gen9_exec_parse@allowed-single:
- shard-apl: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-apl2/igt@gen9_exec_parse@allowed-single.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-apl6/igt@gen9_exec_parse@allowed-single.html
* igt@i915_hwmon@hwmon-read:
- shard-dg2: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-7/igt@i915_hwmon@hwmon-read.html
Known issues
------------
Here are the changes found in IGTPW_9792_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][5] ([i915#7701]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-1/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy-hang@bcs0:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +10 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-5/igt@drm_fdinfo@busy-hang@bcs0.html
* igt@drm_fdinfo@busy-hang@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8414]) +19 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-5/igt@drm_fdinfo@busy-hang@rcs0.html
* igt@gem_bad_reloc@negative-reloc-bltcopy:
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#3281]) +16 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-2/igt@gem_bad_reloc@negative-reloc-bltcopy.html
* igt@gem_basic@multigpu-create-close:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#7697]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-1/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#3936])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#3555])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][12] -> [INCOMPLETE][13] ([i915#7297])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#7697]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-1/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#6335]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-3/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [PASS][16] -> [FAIL][17] ([i915#6268])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html
- shard-tglu: [PASS][18] -> [FAIL][19] ([i915#6268])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_isolation@preservation-s3@ccs2:
- shard-dg2: [PASS][20] -> [FAIL][21] ([fdo#103375]) +2 other tests fail
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg2-3/igt@gem_ctx_isolation@preservation-s3@ccs2.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-6/igt@gem_ctx_isolation@preservation-s3@ccs2.html
* igt@gem_ctx_isolation@preservation-s3@vcs0:
- shard-mtlp: [PASS][22] -> [DMESG-WARN][23] ([i915#9262])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-mtlp-1/igt@gem_ctx_isolation@preservation-s3@vcs0.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-2/igt@gem_ctx_isolation@preservation-s3@vcs0.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-mtlp: NOTRUN -> [SKIP][24] ([fdo#109314])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-2/igt@gem_ctx_param@set-priority-not-supported.html
- shard-dg2: NOTRUN -> [SKIP][25] ([fdo#109314])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-6/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#1099])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-snb1/igt@gem_ctx_persistence@engines-hostile-preempt.html
* igt@gem_ctx_persistence@engines-hostile@vcs0:
- shard-mtlp: NOTRUN -> [FAIL][27] ([i915#2410]) +3 other tests fail
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@gem_ctx_persistence@engines-hostile@vcs0.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#8555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#280])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@kms:
- shard-dg2: [PASS][30] -> [FAIL][31] ([i915#5784])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg2-7/igt@gem_eio@kms.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-11/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-dual:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4771])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#4812])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-10/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4812]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-5/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#8555])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-3/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#6334])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@pi@vcs0:
- shard-mtlp: [PASS][37] -> [FAIL][38] ([i915#4475])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-mtlp-4/igt@gem_exec_capture@pi@vcs0.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-dg2: NOTRUN -> [TIMEOUT][39] ([i915#3778] / [i915#7016] / [i915#7921])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-11/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][40] -> [FAIL][41] ([i915#2846])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4473] / [i915#4771]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-5/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-3/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][44] -> [FAIL][45] ([i915#2842])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3711])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#3539]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-7/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][48] ([fdo#109283] / [i915#5107])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-2/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-gtt-read-active:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg1-18/igt@gem_exec_reloc@basic-gtt-read-active.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +7 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-7/igt@gem_exec_reloc@basic-write-wc-noreloc.html
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#3281])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-2/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@preemptive-hang@ccs0:
- shard-mtlp: NOTRUN -> [ABORT][53] ([i915#4537] / [i915#9262])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@gem_exec_schedule@preemptive-hang@ccs0.html
* igt@gem_exec_schedule@preemptive-hang@vcs0:
- shard-mtlp: NOTRUN -> [FAIL][54] ([i915#9051])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@gem_exec_schedule@preemptive-hang@vcs0.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4537] / [i915#4812]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-11/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4860])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-3/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4860]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-5/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-glk: NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#2190])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-glk7/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4613]) +4 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-7/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#4613])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: NOTRUN -> [TIMEOUT][61] ([i915#5493])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8289])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#284])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-1/igt@gem_media_vme.html
* igt@gem_mmap@bad-size:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4083]) +7 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-8/igt@gem_mmap@bad-size.html
* igt@gem_mmap@short-mmap:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4083]) +5 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-7/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@basic-short:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4077]) +18 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-7/igt@gem_mmap_gtt@basic-short.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4077]) +10 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-6/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_gtt@fault-concurrent-y:
- shard-snb: [PASS][68] -> [INCOMPLETE][69] ([i915#5161])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-snb4/igt@gem_mmap_gtt@fault-concurrent-y.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-snb2/igt@gem_mmap_gtt@fault-concurrent-y.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4270]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-3/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#4270])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-2/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4270]) +6 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-8/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3282]) +9 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-1/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@y-tiled-to-vebox-x-tiled:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8428]) +12 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4079])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-11/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#3282])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-7/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_tiled_pread_basic:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4079]) +3 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-7/igt@gem_tiled_pread_basic.html
* igt@gem_unfence_active_buffers:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4879])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-10/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3297]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-5/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297] / [i915#4880])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@vma-merge:
- shard-mtlp: NOTRUN -> [FAIL][82] ([i915#3318])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-3/igt@gem_userptr_blits@vma-merge.html
* igt@gen3_render_tiledy_blits:
- shard-mtlp: NOTRUN -> [SKIP][83] ([fdo#109289]) +7 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-7/igt@gen3_render_tiledy_blits.html
* igt@gen7_exec_parse@basic-offset:
- shard-dg2: NOTRUN -> [SKIP][84] ([fdo#109289]) +5 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-7/igt@gen7_exec_parse@basic-offset.html
- shard-rkl: NOTRUN -> [SKIP][85] ([fdo#109289]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-2/igt@gen7_exec_parse@basic-offset.html
* igt@gen7_exec_parse@load-register-reg:
- shard-dg1: NOTRUN -> [SKIP][86] ([fdo#109289])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg1-16/igt@gen7_exec_parse@load-register-reg.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [PASS][87] -> [INCOMPLETE][88] ([i915#5566])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-glk7/igt@gen9_exec_parse@allowed-single.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-glk5/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#2856]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-6/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#2856]) +7 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-3/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_hangman@detector@vcs0:
- shard-mtlp: NOTRUN -> [FAIL][91] ([i915#8456]) +2 other tests fail
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-2/igt@i915_hangman@detector@vcs0.html
* igt@i915_pipe_stress@stress-xrgb8888-untiled:
- shard-apl: [PASS][92] -> [FAIL][93] ([i915#7036])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-apl1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-apl3/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#6590]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rc6_residency@rc6-idle@bcs0:
- shard-dg1: [PASS][95] -> [FAIL][96] ([i915#3591])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-glk: NOTRUN -> [SKIP][97] ([fdo#109271]) +47 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-glk6/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][98] -> [SKIP][99] ([i915#1397])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp-stress.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-1/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@pc8-residency:
- shard-dg2: NOTRUN -> [SKIP][100] ([fdo#109506])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-10/igt@i915_pm_rpm@pc8-residency.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#6621])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-3/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#8925]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#8925])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-6/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_query@query-topology-unsupported:
- shard-mtlp: NOTRUN -> [SKIP][104] ([fdo#109302])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@i915_query@query-topology-unsupported.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#5723])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-4/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock@memory_region:
- shard-snb: NOTRUN -> [DMESG-WARN][106] ([i915#9312])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-snb2/igt@i915_selftest@mock@memory_region.html
- shard-mtlp: NOTRUN -> [DMESG-WARN][107] ([i915#9311] / [i915#9312])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#4212]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-8/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#4212]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-3/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#8502]) +7 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][111] ([i915#8561]) +3 other tests dmesg-fail
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#404])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#1769] / [i915#3555]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#1769] / [i915#3555])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#5286])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [FAIL][116] ([i915#5138])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][117] ([fdo#111614])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-tglu-2/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][118] ([fdo#111614] / [i915#3638])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-1/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][119] ([fdo#111614]) +5 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-7/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][120] ([fdo#111614]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-11/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-apl: NOTRUN -> [SKIP][121] ([fdo#109271]) +56 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-apl2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#5190]) +7 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-7/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [PASS][123] -> [FAIL][124] ([i915#3743]) +1 other test fail
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][125] ([fdo#111615]) +12 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5190]) +3 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6187]) +4 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][128] ([fdo#110723])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_joiner@basic:
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#2705])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@kms_big_joiner@basic.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#3886] / [i915#6095]) +9 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#3689] / [i915#5354] / [i915#6095])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-tglu-4/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#5354] / [i915#6095])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-2/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-tglu-10/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#3689] / [i915#3886] / [i915#5354]) +6 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-6/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-bad-aux-stride-4_tiled_mtl_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#5354] / [i915#6095])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-6/igt@kms_ccs@pipe-b-bad-aux-stride-4_tiled_mtl_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#3689] / [i915#5354]) +13 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-2/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#3886] / [i915#5354] / [i915#6095])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#3734] / [i915#5354] / [i915#6095]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-6/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][139] ([fdo#109271] / [i915#3886]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-glk8/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#5354] / [i915#6095]) +3 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg1-15/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#5354]) +46 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-5/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#5354]) +5 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-4/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#5354] / [i915#6095]) +2 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-tglu-5/igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-crc-primary-rotation-180-yf_tiled_ccs:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#6095]) +53 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-5/igt@kms_ccs@pipe-d-crc-primary-rotation-180-yf_tiled_ccs.html
* igt@kms_chamelium_audio@dp-audio:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#7828]) +11 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2: NOTRUN -> [SKIP][146] ([fdo#111827])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-5/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-mtlp: NOTRUN -> [SKIP][147] ([fdo#111827]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-7/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#7828])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg1-17/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#7828]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-tglu-9/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#7828]) +7 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#7828])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-7/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#3299]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-1/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@lic:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#6944]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@kms_content_protection@lic.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#3359])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#3359])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3359]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [FAIL][157] ([i915#8787]) +1 other test fail
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#8814]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#3555]) +7 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#3359])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg1-16/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][161] ([fdo#111767] / [i915#3546]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#4103])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#4213]) +3 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3546]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-dg2: NOTRUN -> [SKIP][165] ([fdo#109274] / [i915#5354]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [PASS][166] -> [FAIL][167] ([i915#2346])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#8812])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#3840])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-11/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#3840])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-8/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-snb: NOTRUN -> [DMESG-WARN][171] ([i915#8841])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-snb7/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-mtlp: NOTRUN -> [ABORT][172] ([i915#9262]) +7 other tests abort
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-8/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_fence_pin_leak:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#4881])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#8381])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#3637]) +9 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-1/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2: NOTRUN -> [SKIP][176] ([fdo#109274]) +4 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#8810]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#2672]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#8810])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#2672]) +3 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#2672] / [i915#3555]) +3 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: [PASS][182] -> [FAIL][183] ([i915#6880])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][184] ([fdo#109280]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#1825]) +54 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#5460])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#3458]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#8708]) +19 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#5439])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#3458]) +12 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][191] ([fdo#110189])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][192] ([fdo#111825] / [i915#1825]) +6 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][193] ([fdo#111825]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#8708]) +16 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#3023]) +6 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#6118])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-7/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8228]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-3/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@static-toggle-suspend:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8228])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#4816])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8821])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-6/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#6953])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-7/igt@kms_plane_scaling@intel-max-src-size.html
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#6953])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-7/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][203] ([i915#8292])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
- shard-tglu: [PASS][204] -> [FAIL][205] ([i915#8292])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-tglu-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-tglu-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][206] ([i915#8292])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#5176]) +13 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#5176]) +3 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#5176]) +5 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#5176]) +27 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#5235]) +7 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#5235]) +11 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#5235]) +23 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html
* igt@kms_prime@d3hot:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#6524]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-1/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][215] ([fdo#109271] / [i915#658])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-glk1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#658]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#4348]) +2 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-apl: NOTRUN -> [SKIP][218] ([fdo#109271] / [i915#658])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-apl3/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@psr2_dpms:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#1072]) +4 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-3/igt@kms_psr@psr2_dpms.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#1072])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-2/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_psr@psr2_sprite_render:
- shard-mtlp: NOTRUN -> [FAIL][221] ([i915#9066])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-2/igt@kms_psr@psr2_sprite_render.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#5461] / [i915#658])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#4235]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html
- shard-rkl: [PASS][224] -> [INCOMPLETE][225] ([i915#8875])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-rkl-1/igt@kms_rotation_crc@primary-rotation-270.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-7/igt@kms_rotation_crc@primary-rotation-270.html
- shard-tglu: [PASS][226] -> [DMESG-WARN][227] ([i915#1982])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-tglu-3/igt@kms_rotation_crc@primary-rotation-270.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-tglu-7/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#4235]) +7 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-7/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_selftest@drm_cmdline:
- shard-glk: NOTRUN -> [SKIP][229] ([fdo#109271] / [i915#8661])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-glk7/igt@kms_selftest@drm_cmdline.html
* igt@kms_selftest@drm_format_helper:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#8661]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-3/igt@kms_selftest@drm_format_helper.html
* igt@kms_selftest@drm_plane:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#8661])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-2/igt@kms_selftest@drm_plane.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#8809])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#8623])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-snb: NOTRUN -> [SKIP][234] ([fdo#109271]) +98 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-snb1/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-b:
- shard-tglu: [PASS][235] -> [FAIL][236] ([i915#9196])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
* igt@kms_vblank@pipe-c-query-forked-busy:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#4070] / [i915#6768])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-1/igt@kms_vblank@pipe-c-query-forked-busy.html
* igt@kms_vblank@pipe-d-query-forked-hang:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#4070] / [i915#533] / [i915#6768])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-4/igt@kms_vblank@pipe-d-query-forked-hang.html
* igt@kms_vblank@pipe-d-wait-idle:
- shard-apl: NOTRUN -> [SKIP][239] ([fdo#109271] / [i915#533])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-apl2/igt@kms_vblank@pipe-d-wait-idle.html
* igt@kms_vrr@flipline:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8808]) +2 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-5/igt@kms_vrr@flipline.html
* igt@kms_writeback@writeback-check-output:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#2437])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@kms_writeback@writeback-check-output.html
* igt@perf@enable-disable@0-rcs0:
- shard-mtlp: NOTRUN -> [FAIL][242] ([i915#7823])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-7/igt@perf@enable-disable@0-rcs0.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#2436])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-10/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@polling@1-vecs0:
- shard-mtlp: NOTRUN -> [FAIL][244] ([i915#9259])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-2/igt@perf@polling@1-vecs0.html
* igt@perf_pmu@busy@rcs0:
- shard-mtlp: NOTRUN -> [FAIL][245] ([i915#4349]) +8 other tests fail
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-5/igt@perf_pmu@busy@rcs0.html
* igt@perf_pmu@most-busy-check-all@vcs0:
- shard-mtlp: NOTRUN -> [FAIL][246] ([i915#5234]) +6 other tests fail
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-1/igt@perf_pmu@most-busy-check-all@vcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-mtlp: NOTRUN -> [ABORT][247] ([i915#9268] / [i915#9335])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-8/igt@perf_pmu@rc6-all-gts.html
* igt@prime_busy@hang-wait@ccs0:
- shard-mtlp: [PASS][248] -> [ABORT][249] ([i915#9262])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-mtlp-3/igt@prime_busy@hang-wait@ccs0.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-3/igt@prime_busy@hang-wait@ccs0.html
* igt@prime_udl:
- shard-mtlp: NOTRUN -> [SKIP][250] ([fdo#109291])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@prime_udl.html
* igt@prime_vgem@basic-blt:
- shard-mtlp: NOTRUN -> [FAIL][251] ([i915#8445]) +1 other test fail
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@prime_vgem@basic-blt.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#3291] / [i915#3708]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-6/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#3708])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-3/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#3708]) +2 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-8/igt@prime_vgem@fence-read-hang.html
* igt@tools_test@sysfs_l3_parity:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#4818])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-7/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_mmap@mmap-bo:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#2575]) +20 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-7/igt@v3d/v3d_mmap@mmap-bo.html
* igt@v3d/v3d_submit_cl@bad-perfmon:
- shard-rkl: NOTRUN -> [SKIP][257] ([fdo#109315]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-4/igt@v3d/v3d_submit_cl@bad-perfmon.html
* igt@v3d/v3d_submit_csd@bad-multisync-extension:
- shard-tglu: NOTRUN -> [SKIP][258] ([fdo#109315] / [i915#2575])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-tglu-8/igt@v3d/v3d_submit_csd@bad-multisync-extension.html
* igt@v3d/v3d_submit_csd@bad-multisync-out-sync:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#2575]) +7 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-3/igt@v3d/v3d_submit_csd@bad-multisync-out-sync.html
* igt@vc4/vc4_purgeable_bo@free-purged-bo:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#7711]) +14 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-2/igt@vc4/vc4_purgeable_bo@free-purged-bo.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged:
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#2575]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-tglu-4/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html
* igt@vc4/vc4_tiling@set-bad-handle:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#7711])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg1-13/igt@vc4/vc4_tiling@set-bad-handle.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#7711]) +8 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-11/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#7711]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-7/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][265] ([i915#5784]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg1-19/igt@gem_eio@reset-stress.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg1-15/igt@gem_eio@reset-stress.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-mtlp: [ABORT][267] ([i915#9262]) -> [PASS][268] +2 other tests pass
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-mtlp-7/igt@gem_exec_suspend@basic-s3@smem.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@gem_exec_suspend@basic-s3@smem.html
* igt@i915_hangman@engine-engine-hang@vcs0:
- shard-mtlp: [FAIL][269] ([i915#7069]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-mtlp-3/igt@i915_hangman@engine-engine-hang@vcs0.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@i915_hangman@engine-engine-hang@vcs0.html
* igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][271] ([i915#1397]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [FAIL][273] ([i915#3743]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [FAIL][275] ([i915#2346]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_frontbuffer_tracking@fbc-badstride:
- shard-dg2: [FAIL][277] ([i915#6880]) -> [PASS][278]
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-badstride.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-badstride.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-dg2: [FAIL][279] ([fdo#103375]) -> [PASS][280] +1 other test pass
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-suspend.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1:
- shard-apl: [INCOMPLETE][281] -> [PASS][282]
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-apl4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-edp-1:
- shard-mtlp: [DMESG-WARN][283] ([i915#9262]) -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-mtlp-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-edp-1.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-b:
- shard-dg1: [FAIL][285] ([i915#9196]) -> [PASS][286]
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg1-17/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg1-12/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-d:
- shard-mtlp: [FAIL][287] ([i915#9196]) -> [PASS][288] +1 other test pass
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html
* igt@sysfs_timeslice_duration@timeout@vecs0:
- shard-mtlp: [ABORT][289] ([i915#8521] / [i915#8865]) -> [PASS][290]
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-mtlp-2/igt@sysfs_timeslice_duration@timeout@vecs0.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@sysfs_timeslice_duration@timeout@vecs0.html
#### Warnings ####
* igt@gem_exec_fence@basic-await:
- shard-snb: [ABORT][291] ([i915#8865]) -> [SKIP][292] ([fdo#109271])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-snb7/igt@gem_exec_fence@basic-await.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-snb1/igt@gem_exec_fence@basic-await.html
* igt@kms_content_protection@mei_interface:
- shard-rkl: [SKIP][293] ([fdo#109300]) -> [SKIP][294] ([i915#7118])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-rkl-4/igt@kms_content_protection@mei_interface.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-4/igt@kms_content_protection@mei_interface.html
- shard-tglu: [SKIP][295] ([fdo#109300]) -> [SKIP][296] ([i915#6944] / [i915#7116] / [i915#7118])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-tglu-4/igt@kms_content_protection@mei_interface.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-tglu-9/igt@kms_content_protection@mei_interface.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][297] ([i915#3955]) -> [SKIP][298] ([fdo#110189] / [i915#3955])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@flip-vs-suspend@b-vga1:
- shard-snb: [DMESG-WARN][299] ([i915#8841]) -> [INCOMPLETE][300] ([i915#4839] / [i915#8841])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-snb4/igt@kms_flip@flip-vs-suspend@b-vga1.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-snb7/igt@kms_flip@flip-vs-suspend@b-vga1.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][301] ([i915#4816]) -> [SKIP][302] ([i915#4070] / [i915#4816])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@cursor_plane_move:
- shard-dg1: [SKIP][303] ([i915#1072]) -> [SKIP][304] ([i915#1072] / [i915#4078]) +1 other test skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg1-17/igt@kms_psr@cursor_plane_move.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg1-13/igt@kms_psr@cursor_plane_move.html
* igt@kms_psr@primary_page_flip:
- shard-dg1: [SKIP][305] ([i915#1072] / [i915#4078]) -> [SKIP][306] ([i915#1072])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg1-12/igt@kms_psr@primary_page_flip.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-dg1-17/igt@kms_psr@primary_page_flip.html
* igt@perf_pmu@rc6-suspend:
- shard-mtlp: [ABORT][307] ([i915#9262] / [i915#9268]) -> [ABORT][308] ([i915#9268])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-mtlp-4/igt@perf_pmu@rc6-suspend.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-6/igt@perf_pmu@rc6-suspend.html
* igt@perf_pmu@rc6@other-idle-gt1:
- shard-mtlp: [INCOMPLETE][309] ([i915#9268]) -> [SKIP][310] ([i915#8537])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-mtlp-4/igt@perf_pmu@rc6@other-idle-gt1.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-3/igt@perf_pmu@rc6@other-idle-gt1.html
* igt@perf_pmu@rc6@runtime-pm-long-gt1:
- shard-mtlp: [DMESG-WARN][311] ([i915#9335]) -> [SKIP][312] ([i915#8537]) +1 other test skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-mtlp-4/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/shard-mtlp-3/igt@perf_pmu@rc6@runtime-pm-long-gt1.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#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#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
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[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#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[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#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475
[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#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
[i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[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#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[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#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7016]: https://gitlab.freedesktop.org/drm/intel/issues/7016
[i915#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036
[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#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7823]: https://gitlab.freedesktop.org/drm/intel/issues/7823
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7921]: https://gitlab.freedesktop.org/drm/intel/issues/7921
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[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#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445
[i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521
[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#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8787]: https://gitlab.freedesktop.org/drm/intel/issues/8787
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[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#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865
[i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9051]: https://gitlab.freedesktop.org/drm/intel/issues/9051
[i915#9066]: https://gitlab.freedesktop.org/drm/intel/issues/9066
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9259]: https://gitlab.freedesktop.org/drm/intel/issues/9259
[i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
[i915#9268]: https://gitlab.freedesktop.org/drm/intel/issues/9268
[i915#9292]: https://gitlab.freedesktop.org/drm/intel/issues/9292
[i915#9298]: https://gitlab.freedesktop.org/drm/intel/issues/9298
[i915#9310]: https://gitlab.freedesktop.org/drm/intel/issues/9310
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9312]: https://gitlab.freedesktop.org/drm/intel/issues/9312
[i915#9335]: https://gitlab.freedesktop.org/drm/intel/issues/9335
[i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7488 -> IGTPW_9792
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13633: 5cf0e59ecc1424e51a5f5cf2f26682b5dcea5a25 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9792: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9792/index.html
IGT_7488: 099e058c5dfb7a49942edf03cae88a52a77077a3 @ 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_9792/index.html
[-- Attachment #2: Type: text/html, Size: 102941 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/3] lib/igt_gt: Add gem_engine_can_block_ggtt_binder
2023-09-14 20:18 ` [igt-dev] [PATCH i-g-t 1/3] lib/igt_gt: Add gem_engine_can_block_ggtt_binder Nirmoy Das
@ 2023-09-15 18:00 ` Kamil Konieczny
0 siblings, 0 replies; 13+ messages in thread
From: Kamil Konieczny @ 2023-09-15 18:00 UTC (permalink / raw)
To: igt-dev; +Cc: andi.shyti, oak.zeng, Nirmoy Das
Hi Nirmoy,
On 2023-09-14 at 22:18:07 +0200, Nirmoy Das wrote:
> 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 [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/3] tests/intel/gem_ctx_shared: Skip some test on MTL
2023-09-14 20:18 ` [igt-dev] [PATCH i-g-t 2/3] tests/intel/gem_ctx_shared: Skip some test on MTL Nirmoy Das
@ 2023-09-15 18:02 ` Kamil Konieczny
0 siblings, 0 replies; 13+ messages in thread
From: Kamil Konieczny @ 2023-09-15 18:02 UTC (permalink / raw)
To: igt-dev; +Cc: andi.shyti, oak.zeng, Nirmoy Das
Hi Nirmoy,
On 2023-09-14 at 22:18:08 +0200, Nirmoy Das wrote:
> We do GGTT update on MTL using bcs engine, blocking that would
---------------------------------------------------------- ^^^^^
> will fail the test so skip such subtests on bcs engine for MTL.
- ^^^^
s/will//
With that fixed:
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
>
> Signed-off-by: Nirmoy Das <nirmoy.das@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 [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 3/3] tests/intel/gem_ctx_schedule: Skip some test on MTL
2023-09-14 20:18 ` [igt-dev] [PATCH i-g-t 3/3] tests/intel/gem_ctx_schedule: " Nirmoy Das
@ 2023-09-15 18:04 ` Kamil Konieczny
0 siblings, 0 replies; 13+ messages in thread
From: Kamil Konieczny @ 2023-09-15 18:04 UTC (permalink / raw)
To: igt-dev; +Cc: andi.shyti, oak.zeng, Nirmoy Das
Hi Nirmoy,
On 2023-09-14 at 22:18:09 +0200, Nirmoy Das wrote:
> We do GGTT update on MTL using bcs engine, blocking that would
> will fail the test so skip such subtests on bcs engine for MTL.
- ^^^^
s/will//
With that fixed:
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
>
> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
> ---
> tests/intel/gem_exec_schedule.c | 37 ++++++++++++++++++++-------------
> 1 file changed, 22 insertions(+), 15 deletions(-)
>
> diff --git a/tests/intel/gem_exec_schedule.c b/tests/intel/gem_exec_schedule.c
> index c94988d36..607a5b21f 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);
> }
>
> @@ -3615,10 +3622,10 @@ igt_main
> test_each_engine_store("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 [flat|nested] 13+ messages in thread
end of thread, other threads:[~2023-09-15 18:04 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-14 20:18 [igt-dev] [PATCH i-g-t v2 0/3] Ignore some tests on MTL which Nirmoy Das
2023-09-14 20:18 ` [igt-dev] [PATCH i-g-t 1/3] lib/igt_gt: Add gem_engine_can_block_ggtt_binder Nirmoy Das
2023-09-15 18:00 ` Kamil Konieczny
2023-09-14 20:18 ` [igt-dev] [PATCH i-g-t 2/3] tests/intel/gem_ctx_shared: Skip some test on MTL Nirmoy Das
2023-09-15 18:02 ` Kamil Konieczny
2023-09-14 20:18 ` [igt-dev] [PATCH i-g-t 3/3] tests/intel/gem_ctx_schedule: " Nirmoy Das
2023-09-15 18:04 ` Kamil Konieczny
2023-09-14 21:52 ` [igt-dev] ✓ Fi.CI.BAT: success for Ignore some tests on MTL which (rev3) Patchwork
2023-09-14 22:20 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
2023-09-15 4:51 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2023-09-13 9:42 [igt-dev] [PATCH i-g-t 0/3] Ignore some tests on MTL which Nirmoy Das
2023-09-13 9:42 ` [igt-dev] [PATCH i-g-t 2/3] tests/intel/gem_ctx_shared: Skip some test on MTL Nirmoy Das
2023-09-14 13:50 ` Kamil Konieczny
2023-09-14 19:13 ` Nirmoy Das
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox