* [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures
@ 2023-07-19 15:36 Zbigniew Kempczyński
2023-07-19 16:24 ` [igt-dev] ○ CI.xeBAT: info for tests/gem_*: Migrate allocator start/stop to fixtures (rev2) Patchwork
` (12 more replies)
0 siblings, 13 replies; 20+ messages in thread
From: Zbigniew Kempczyński @ 2023-07-19 15:36 UTC (permalink / raw)
To: igt-dev
Although starting and stopping allocator in tests is nothing wrong
it may produce annoying warning on next start if test just fails
and doesn't call allocator stop. On multiprocess mode allocator
creates dedicated thread which should be properly stopped on the
test completion. Unfortunately premature test exit (failure)
leaves it waiting. Next allocator start solves this situation
(drops message queue what unblocks thread allowing it to exit)
but it logs warning informing about this situation.
To avoid producing warning move allocator start/stop to fixtures
in tests. I intentionally didn't touch api_intel_allocator (there
I want to check this functionality) and in single benchmark
(it is not executed on CI so there warning might be handy).
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Karolina Stolarek <karolina.stolarek@intel.com>
---
v2: - migrate allocator-evict as it also should use externally
created allocator thread (Karolina)
- ensure thread is created in gem_lmem_swapping when module
wasn't previously loaded (Karolina)
- s/alloctor/allocator/
---
tests/i915/gem_linear_blits.c | 42 +++++++++++++++++-------------
tests/i915/gem_lmem_swapping.c | 4 +--
tests/i915/gem_ringfill.c | 13 ++++-----
tests/i915/gem_softpin.c | 40 ++++++++++++++--------------
tests/i915/gem_tiled_blits.c | 40 ++++++++++++++++------------
tests/i915/gem_tiled_fence_blits.c | 22 +++++++++++-----
6 files changed, 89 insertions(+), 72 deletions(-)
diff --git a/tests/i915/gem_linear_blits.c b/tests/i915/gem_linear_blits.c
index 32b9052507..cc28e43fef 100644
--- a/tests/i915/gem_linear_blits.c
+++ b/tests/i915/gem_linear_blits.c
@@ -312,24 +312,30 @@ igt_main
igt_subtest("basic")
run_test(fd, 2, do_relocs);
- igt_describe("The intent is to push beyond the working GTT size to force"
- " the driver to rebind the buffers");
- igt_subtest("normal") {
- intel_allocator_multiprocess_start();
- igt_fork(child, ncpus)
- run_test(fd, count, do_relocs);
- igt_waitchildren();
- intel_allocator_multiprocess_stop();
- }
+ igt_subtest_group {
+ igt_fixture {
+ intel_allocator_multiprocess_start();
+ }
- igt_describe("Test with interrupts in between the parent process");
- igt_subtest("interruptible") {
- intel_allocator_multiprocess_start();
- igt_fork_signal_helper();
- igt_fork(child, ncpus)
- run_test(fd, count, do_relocs);
- igt_waitchildren();
- igt_stop_signal_helper();
- intel_allocator_multiprocess_stop();
+ igt_describe("The intent is to push beyond the working GTT size to force"
+ " the driver to rebind the buffers");
+ igt_subtest("normal") {
+ igt_fork(child, ncpus)
+ run_test(fd, count, do_relocs);
+ igt_waitchildren();
+ }
+
+ igt_describe("Test with interrupts in between the parent process");
+ igt_subtest("interruptible") {
+ igt_fork_signal_helper();
+ igt_fork(child, ncpus)
+ run_test(fd, count, do_relocs);
+ igt_waitchildren();
+ igt_stop_signal_helper();
+ }
+
+ igt_fixture {
+ intel_allocator_multiprocess_stop();
+ }
}
}
diff --git a/tests/i915/gem_lmem_swapping.c b/tests/i915/gem_lmem_swapping.c
index 2921de8f9f..ede545c925 100644
--- a/tests/i915/gem_lmem_swapping.c
+++ b/tests/i915/gem_lmem_swapping.c
@@ -708,7 +708,6 @@ static void test_evict(int i915,
if (flags & TEST_PARALLEL) {
int fd = drm_reopen_driver(i915);
- intel_allocator_multiprocess_start();
ctx = intel_ctx_create_all_physical(fd);
__gem_context_set_persistence(fd, ctx->id, false);
@@ -719,7 +718,6 @@ static void test_evict(int i915,
igt_waitchildren();
intel_ctx_destroy(fd, ctx);
drm_close_driver(fd);
- intel_allocator_multiprocess_stop();
} else {
__do_evict(i915, ctx, ®ion->region, ¶ms, params.seed);
}
@@ -932,6 +930,7 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
igt_require(__num_engines__);
ctx = intel_ctx_create_all_physical(i915);
__gem_context_set_persistence(i915, ctx->id, false);
+ intel_allocator_multiprocess_start();
}
@@ -946,6 +945,7 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
test_smem_oom(i915, ctx, region);
igt_fixture {
+ intel_allocator_multiprocess_stop();
intel_ctx_destroy(i915, ctx);
free(regions);
drm_close_driver(i915);
diff --git a/tests/i915/gem_ringfill.c b/tests/i915/gem_ringfill.c
index c718d6fe73..66fbd27fa5 100644
--- a/tests/i915/gem_ringfill.c
+++ b/tests/i915/gem_ringfill.c
@@ -456,6 +456,8 @@ igt_main
igt_require(ring_size);
ctx = intel_ctx_create_all_physical(fd);
+
+ intel_allocator_multiprocess_start();
}
/* Legacy path for selecting "rings". */
@@ -467,13 +469,11 @@ igt_main
for_each_ring(e, fd) {
igt_dynamic_f("%s", e->name) {
igt_require(gem_can_store_dword(fd, eb_ring(e)));
- intel_allocator_multiprocess_start();
run_test(fd, intel_ctx_0(fd),
eb_ring(e),
m->flags,
m->timeout);
gem_quiescent_gpu(fd);
- intel_allocator_multiprocess_stop();
}
}
}
@@ -491,13 +491,11 @@ igt_main
continue;
igt_dynamic_f("%s", e->name) {
- intel_allocator_multiprocess_start();
run_test(fd, ctx,
e->flags,
m->flags,
m->timeout);
gem_quiescent_gpu(fd);
- intel_allocator_multiprocess_stop();
}
}
}
@@ -506,7 +504,6 @@ igt_main
igt_describe("Basic check to fill the ring upto maximum on all engines simultaneously.");
igt_subtest("basic-all") {
const struct intel_execution_engine2 *e;
- intel_allocator_multiprocess_start();
for_each_ctx_engine(fd, ctx, e) {
if (!gem_class_can_store_dword(fd, e->class))
@@ -517,10 +514,10 @@ igt_main
}
igt_waitchildren();
+ }
+
+ igt_fixture {
intel_allocator_multiprocess_stop();
- }
-
- igt_fixture {
intel_ctx_destroy(fd, ctx);
drm_close_driver(fd);
}
diff --git a/tests/i915/gem_softpin.c b/tests/i915/gem_softpin.c
index e6cbf624e1..f5f0ba2576 100644
--- a/tests/i915/gem_softpin.c
+++ b/tests/i915/gem_softpin.c
@@ -75,7 +75,7 @@
*
* SUBTEST: allocator-fork
* Category: Infrastructure
- * Description: Check if multiple processes can use alloctor.
+ * Description: Check if multiple processes can use allocator.
* Feature: mapping
* Functionality: command submission
* Run type: FULL
@@ -1060,13 +1060,6 @@ static void test_allocator_fork(int fd)
struct drm_i915_gem_exec_object2 objects[num_reserved];
uint64_t ahnd, ressize = 4096;
- /*
- * Must be called before opening allocator in multiprocess environment
- * due to freeing previous allocator infrastructure and proper setup
- * of data structures and allocation thread.
- */
- intel_allocator_multiprocess_start();
-
ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_SIMPLE);
__reserve(ahnd, fd, true, objects, num_reserved, ressize);
@@ -1084,8 +1077,6 @@ static void test_allocator_fork(int fd)
ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_SIMPLE);
igt_assert(intel_allocator_close(ahnd) == true);
-
- intel_allocator_multiprocess_stop();
}
#define BATCH_SIZE (4096<<10)
@@ -1197,7 +1188,6 @@ static void test_allocator_evict(int fd, const intel_ctx_t *ctx,
igt_debug("Using %'d batches to fill %'llu aperture on %d engines\n",
count, (long long)size, nengine);
- intel_allocator_multiprocess_start();
ahnd = intel_allocator_open_full(fd, 0, 0, size / 16,
INTEL_ALLOCATOR_RELOC,
ALLOC_STRATEGY_NONE, 0);
@@ -1266,7 +1256,6 @@ static void test_allocator_evict(int fd, const intel_ctx_t *ctx,
igt_waitchildren();
intel_allocator_close(ahnd);
- intel_allocator_multiprocess_stop();
for (unsigned i = 0; i < count; i++) {
munmap(batches[i].ptr, BATCH_SIZE);
@@ -1666,14 +1655,6 @@ igt_main
test_allocator_nopin(fd, true);
}
- igt_describe("Check if multiple processes can use alloctor.");
- igt_subtest("allocator-fork")
- test_allocator_fork(fd);
-
- igt_describe("Exercise eviction with softpinning.");
- test_each_engine("allocator-evict", fd, ctx, e)
- test_allocator_evict(fd, ctx, e->flags, 20);
-
igt_describe("Use same offset for all engines and for different handles.");
igt_subtest("evict-single-offset")
evict_single_offset(fd, ctx, 20);
@@ -1699,6 +1680,25 @@ igt_main
}
}
+ igt_subtest_group {
+ igt_fixture {
+ igt_require(gem_uses_full_ppgtt(fd));
+ intel_allocator_multiprocess_start();
+ }
+
+ igt_describe("Check if multiple processes can use allocator.");
+ igt_subtest("allocator-fork")
+ test_allocator_fork(fd);
+
+ igt_describe("Exercise eviction with softpinning.");
+ test_each_engine("allocator-evict", fd, ctx, e)
+ test_allocator_evict(fd, ctx, e->flags, 20);
+
+ igt_fixture {
+ intel_allocator_multiprocess_stop();
+ }
+ }
+
igt_describe("Check start offset and alignment detection.");
igt_subtest("safe-alignment")
safe_alignment(fd);
diff --git a/tests/i915/gem_tiled_blits.c b/tests/i915/gem_tiled_blits.c
index 22ac3280d9..072fef3c32 100644
--- a/tests/i915/gem_tiled_blits.c
+++ b/tests/i915/gem_tiled_blits.c
@@ -211,24 +211,30 @@ igt_main
igt_subtest("basic")
run_test(fd, 2);
- igt_describe("Check with parallel execution.");
- igt_subtest("normal") {
- intel_allocator_multiprocess_start();
- igt_fork(child, ncpus)
- run_test(fd, count);
- igt_waitchildren();
- intel_allocator_multiprocess_stop();
- }
+ igt_subtest_group {
+ igt_fixture {
+ intel_allocator_multiprocess_start();
+ }
- igt_describe("Check with interrupts in parallel execution.");
- igt_subtest("interruptible") {
- intel_allocator_multiprocess_start();
- igt_fork_signal_helper();
- igt_fork(child, ncpus)
- run_test(fd, count);
- igt_waitchildren();
- igt_stop_signal_helper();
- intel_allocator_multiprocess_stop();
+ igt_describe("Check with parallel execution.");
+ igt_subtest("normal") {
+ igt_fork(child, ncpus)
+ run_test(fd, count);
+ igt_waitchildren();
+ }
+
+ igt_describe("Check with interrupts in parallel execution.");
+ igt_subtest("interruptible") {
+ igt_fork_signal_helper();
+ igt_fork(child, ncpus)
+ run_test(fd, count);
+ igt_waitchildren();
+ igt_stop_signal_helper();
+ }
+
+ igt_fixture {
+ intel_allocator_multiprocess_stop();
+ }
}
igt_fixture {
diff --git a/tests/i915/gem_tiled_fence_blits.c b/tests/i915/gem_tiled_fence_blits.c
index 5444dcfb85..c536c3699e 100644
--- a/tests/i915/gem_tiled_fence_blits.c
+++ b/tests/i915/gem_tiled_fence_blits.c
@@ -325,13 +325,21 @@ igt_main
igt_subtest("basic")
run_test(fd, 2, end);
- igt_describe("Check with parallel execution.");
- igt_subtest("normal") {
- intel_allocator_multiprocess_start();
- igt_fork(child, ncpus)
- run_test(fd, count, end);
- igt_waitchildren();
- intel_allocator_multiprocess_stop();
+ igt_subtest_group {
+ igt_fixture {
+ intel_allocator_multiprocess_start();
+ }
+
+ igt_describe("Check with parallel execution.");
+ igt_subtest("normal") {
+ igt_fork(child, ncpus)
+ run_test(fd, count, end);
+ igt_waitchildren();
+ }
+
+ igt_fixture {
+ intel_allocator_multiprocess_stop();
+ }
}
igt_fixture
--
2.34.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* [igt-dev] ○ CI.xeBAT: info for tests/gem_*: Migrate allocator start/stop to fixtures (rev2)
2023-07-19 15:36 [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures Zbigniew Kempczyński
@ 2023-07-19 16:24 ` Patchwork
2023-07-19 16:34 ` [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures Karolina Stolarek
` (11 subsequent siblings)
12 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-07-19 16:24 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 358 bytes --]
== Series Details ==
Series: tests/gem_*: Migrate allocator start/stop to fixtures (rev2)
URL : https://patchwork.freedesktop.org/series/120968/
State : info
== Summary ==
Participating hosts:
bat-pvc-2
bat-atsm-2
bat-dg2-oem2
bat-adlp-7
Missing hosts results[0]:
Results: [IGTPW_9434](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9434/index.html)
[-- Attachment #2: Type: text/html, Size: 874 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* Re: [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures
2023-07-19 15:36 [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures Zbigniew Kempczyński
2023-07-19 16:24 ` [igt-dev] ○ CI.xeBAT: info for tests/gem_*: Migrate allocator start/stop to fixtures (rev2) Patchwork
@ 2023-07-19 16:34 ` Karolina Stolarek
2023-07-19 16:37 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/gem_*: Migrate allocator start/stop to fixtures (rev2) Patchwork
` (10 subsequent siblings)
12 siblings, 0 replies; 20+ messages in thread
From: Karolina Stolarek @ 2023-07-19 16:34 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
On 19.07.2023 17:36, Zbigniew Kempczyński wrote:
> Although starting and stopping allocator in tests is nothing wrong
> it may produce annoying warning on next start if test just fails
> and doesn't call allocator stop. On multiprocess mode allocator
> creates dedicated thread which should be properly stopped on the
> test completion. Unfortunately premature test exit (failure)
> leaves it waiting. Next allocator start solves this situation
> (drops message queue what unblocks thread allowing it to exit)
> but it logs warning informing about this situation.
>
> To avoid producing warning move allocator start/stop to fixtures
> in tests. I intentionally didn't touch api_intel_allocator (there
> I want to check this functionality) and in single benchmark
> (it is not executed on CI so there warning might be handy).
>
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Karolina Stolarek <karolina.stolarek@intel.com>
> ---
Thanks for addressing my comments, I think the patch is good to go:
Reviewed-by: Karolina Stolarek <karolina.stolarek@intel.com>
> v2: - migrate allocator-evict as it also should use externally
> created allocator thread (Karolina)
> - ensure thread is created in gem_lmem_swapping when module
> wasn't previously loaded (Karolina)
> - s/alloctor/allocator/
> ---
> tests/i915/gem_linear_blits.c | 42 +++++++++++++++++-------------
> tests/i915/gem_lmem_swapping.c | 4 +--
> tests/i915/gem_ringfill.c | 13 ++++-----
> tests/i915/gem_softpin.c | 40 ++++++++++++++--------------
> tests/i915/gem_tiled_blits.c | 40 ++++++++++++++++------------
> tests/i915/gem_tiled_fence_blits.c | 22 +++++++++++-----
> 6 files changed, 89 insertions(+), 72 deletions(-)
>
> diff --git a/tests/i915/gem_linear_blits.c b/tests/i915/gem_linear_blits.c
> index 32b9052507..cc28e43fef 100644
> --- a/tests/i915/gem_linear_blits.c
> +++ b/tests/i915/gem_linear_blits.c
> @@ -312,24 +312,30 @@ igt_main
> igt_subtest("basic")
> run_test(fd, 2, do_relocs);
>
> - igt_describe("The intent is to push beyond the working GTT size to force"
> - " the driver to rebind the buffers");
> - igt_subtest("normal") {
> - intel_allocator_multiprocess_start();
> - igt_fork(child, ncpus)
> - run_test(fd, count, do_relocs);
> - igt_waitchildren();
> - intel_allocator_multiprocess_stop();
> - }
> + igt_subtest_group {
> + igt_fixture {
> + intel_allocator_multiprocess_start();
> + }
>
> - igt_describe("Test with interrupts in between the parent process");
> - igt_subtest("interruptible") {
> - intel_allocator_multiprocess_start();
> - igt_fork_signal_helper();
> - igt_fork(child, ncpus)
> - run_test(fd, count, do_relocs);
> - igt_waitchildren();
> - igt_stop_signal_helper();
> - intel_allocator_multiprocess_stop();
> + igt_describe("The intent is to push beyond the working GTT size to force"
> + " the driver to rebind the buffers");
> + igt_subtest("normal") {
> + igt_fork(child, ncpus)
> + run_test(fd, count, do_relocs);
> + igt_waitchildren();
> + }
> +
> + igt_describe("Test with interrupts in between the parent process");
> + igt_subtest("interruptible") {
> + igt_fork_signal_helper();
> + igt_fork(child, ncpus)
> + run_test(fd, count, do_relocs);
> + igt_waitchildren();
> + igt_stop_signal_helper();
> + }
> +
> + igt_fixture {
> + intel_allocator_multiprocess_stop();
> + }
> }
> }
> diff --git a/tests/i915/gem_lmem_swapping.c b/tests/i915/gem_lmem_swapping.c
> index 2921de8f9f..ede545c925 100644
> --- a/tests/i915/gem_lmem_swapping.c
> +++ b/tests/i915/gem_lmem_swapping.c
> @@ -708,7 +708,6 @@ static void test_evict(int i915,
> if (flags & TEST_PARALLEL) {
> int fd = drm_reopen_driver(i915);
>
> - intel_allocator_multiprocess_start();
> ctx = intel_ctx_create_all_physical(fd);
> __gem_context_set_persistence(fd, ctx->id, false);
>
> @@ -719,7 +718,6 @@ static void test_evict(int i915,
> igt_waitchildren();
> intel_ctx_destroy(fd, ctx);
> drm_close_driver(fd);
> - intel_allocator_multiprocess_stop();
> } else {
> __do_evict(i915, ctx, ®ion->region, ¶ms, params.seed);
> }
> @@ -932,6 +930,7 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
> igt_require(__num_engines__);
> ctx = intel_ctx_create_all_physical(i915);
> __gem_context_set_persistence(i915, ctx->id, false);
> + intel_allocator_multiprocess_start();
>
> }
>
> @@ -946,6 +945,7 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
> test_smem_oom(i915, ctx, region);
>
> igt_fixture {
> + intel_allocator_multiprocess_stop();
> intel_ctx_destroy(i915, ctx);
> free(regions);
> drm_close_driver(i915);
> diff --git a/tests/i915/gem_ringfill.c b/tests/i915/gem_ringfill.c
> index c718d6fe73..66fbd27fa5 100644
> --- a/tests/i915/gem_ringfill.c
> +++ b/tests/i915/gem_ringfill.c
> @@ -456,6 +456,8 @@ igt_main
> igt_require(ring_size);
>
> ctx = intel_ctx_create_all_physical(fd);
> +
> + intel_allocator_multiprocess_start();
> }
>
> /* Legacy path for selecting "rings". */
> @@ -467,13 +469,11 @@ igt_main
> for_each_ring(e, fd) {
> igt_dynamic_f("%s", e->name) {
> igt_require(gem_can_store_dword(fd, eb_ring(e)));
> - intel_allocator_multiprocess_start();
> run_test(fd, intel_ctx_0(fd),
> eb_ring(e),
> m->flags,
> m->timeout);
> gem_quiescent_gpu(fd);
> - intel_allocator_multiprocess_stop();
> }
> }
> }
> @@ -491,13 +491,11 @@ igt_main
> continue;
>
> igt_dynamic_f("%s", e->name) {
> - intel_allocator_multiprocess_start();
> run_test(fd, ctx,
> e->flags,
> m->flags,
> m->timeout);
> gem_quiescent_gpu(fd);
> - intel_allocator_multiprocess_stop();
> }
> }
> }
> @@ -506,7 +504,6 @@ igt_main
> igt_describe("Basic check to fill the ring upto maximum on all engines simultaneously.");
> igt_subtest("basic-all") {
> const struct intel_execution_engine2 *e;
> - intel_allocator_multiprocess_start();
>
> for_each_ctx_engine(fd, ctx, e) {
> if (!gem_class_can_store_dword(fd, e->class))
> @@ -517,10 +514,10 @@ igt_main
> }
>
> igt_waitchildren();
> + }
> +
> + igt_fixture {
> intel_allocator_multiprocess_stop();
> - }
> -
> - igt_fixture {
> intel_ctx_destroy(fd, ctx);
> drm_close_driver(fd);
> }
> diff --git a/tests/i915/gem_softpin.c b/tests/i915/gem_softpin.c
> index e6cbf624e1..f5f0ba2576 100644
> --- a/tests/i915/gem_softpin.c
> +++ b/tests/i915/gem_softpin.c
> @@ -75,7 +75,7 @@
> *
> * SUBTEST: allocator-fork
> * Category: Infrastructure
> - * Description: Check if multiple processes can use alloctor.
> + * Description: Check if multiple processes can use allocator.
> * Feature: mapping
> * Functionality: command submission
> * Run type: FULL
> @@ -1060,13 +1060,6 @@ static void test_allocator_fork(int fd)
> struct drm_i915_gem_exec_object2 objects[num_reserved];
> uint64_t ahnd, ressize = 4096;
>
> - /*
> - * Must be called before opening allocator in multiprocess environment
> - * due to freeing previous allocator infrastructure and proper setup
> - * of data structures and allocation thread.
> - */
> - intel_allocator_multiprocess_start();
> -
> ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_SIMPLE);
> __reserve(ahnd, fd, true, objects, num_reserved, ressize);
>
> @@ -1084,8 +1077,6 @@ static void test_allocator_fork(int fd)
>
> ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_SIMPLE);
> igt_assert(intel_allocator_close(ahnd) == true);
> -
> - intel_allocator_multiprocess_stop();
> }
>
> #define BATCH_SIZE (4096<<10)
> @@ -1197,7 +1188,6 @@ static void test_allocator_evict(int fd, const intel_ctx_t *ctx,
> igt_debug("Using %'d batches to fill %'llu aperture on %d engines\n",
> count, (long long)size, nengine);
>
> - intel_allocator_multiprocess_start();
> ahnd = intel_allocator_open_full(fd, 0, 0, size / 16,
> INTEL_ALLOCATOR_RELOC,
> ALLOC_STRATEGY_NONE, 0);
> @@ -1266,7 +1256,6 @@ static void test_allocator_evict(int fd, const intel_ctx_t *ctx,
> igt_waitchildren();
>
> intel_allocator_close(ahnd);
> - intel_allocator_multiprocess_stop();
>
> for (unsigned i = 0; i < count; i++) {
> munmap(batches[i].ptr, BATCH_SIZE);
> @@ -1666,14 +1655,6 @@ igt_main
> test_allocator_nopin(fd, true);
> }
>
> - igt_describe("Check if multiple processes can use alloctor.");
> - igt_subtest("allocator-fork")
> - test_allocator_fork(fd);
> -
> - igt_describe("Exercise eviction with softpinning.");
> - test_each_engine("allocator-evict", fd, ctx, e)
> - test_allocator_evict(fd, ctx, e->flags, 20);
> -
> igt_describe("Use same offset for all engines and for different handles.");
> igt_subtest("evict-single-offset")
> evict_single_offset(fd, ctx, 20);
> @@ -1699,6 +1680,25 @@ igt_main
> }
> }
>
> + igt_subtest_group {
> + igt_fixture {
> + igt_require(gem_uses_full_ppgtt(fd));
> + intel_allocator_multiprocess_start();
> + }
> +
> + igt_describe("Check if multiple processes can use allocator.");
> + igt_subtest("allocator-fork")
> + test_allocator_fork(fd);
> +
> + igt_describe("Exercise eviction with softpinning.");
> + test_each_engine("allocator-evict", fd, ctx, e)
> + test_allocator_evict(fd, ctx, e->flags, 20);
> +
> + igt_fixture {
> + intel_allocator_multiprocess_stop();
> + }
> + }
> +
> igt_describe("Check start offset and alignment detection.");
> igt_subtest("safe-alignment")
> safe_alignment(fd);
> diff --git a/tests/i915/gem_tiled_blits.c b/tests/i915/gem_tiled_blits.c
> index 22ac3280d9..072fef3c32 100644
> --- a/tests/i915/gem_tiled_blits.c
> +++ b/tests/i915/gem_tiled_blits.c
> @@ -211,24 +211,30 @@ igt_main
> igt_subtest("basic")
> run_test(fd, 2);
>
> - igt_describe("Check with parallel execution.");
> - igt_subtest("normal") {
> - intel_allocator_multiprocess_start();
> - igt_fork(child, ncpus)
> - run_test(fd, count);
> - igt_waitchildren();
> - intel_allocator_multiprocess_stop();
> - }
> + igt_subtest_group {
> + igt_fixture {
> + intel_allocator_multiprocess_start();
> + }
>
> - igt_describe("Check with interrupts in parallel execution.");
> - igt_subtest("interruptible") {
> - intel_allocator_multiprocess_start();
> - igt_fork_signal_helper();
> - igt_fork(child, ncpus)
> - run_test(fd, count);
> - igt_waitchildren();
> - igt_stop_signal_helper();
> - intel_allocator_multiprocess_stop();
> + igt_describe("Check with parallel execution.");
> + igt_subtest("normal") {
> + igt_fork(child, ncpus)
> + run_test(fd, count);
> + igt_waitchildren();
> + }
> +
> + igt_describe("Check with interrupts in parallel execution.");
> + igt_subtest("interruptible") {
> + igt_fork_signal_helper();
> + igt_fork(child, ncpus)
> + run_test(fd, count);
> + igt_waitchildren();
> + igt_stop_signal_helper();
> + }
> +
> + igt_fixture {
> + intel_allocator_multiprocess_stop();
> + }
> }
>
> igt_fixture {
> diff --git a/tests/i915/gem_tiled_fence_blits.c b/tests/i915/gem_tiled_fence_blits.c
> index 5444dcfb85..c536c3699e 100644
> --- a/tests/i915/gem_tiled_fence_blits.c
> +++ b/tests/i915/gem_tiled_fence_blits.c
> @@ -325,13 +325,21 @@ igt_main
> igt_subtest("basic")
> run_test(fd, 2, end);
>
> - igt_describe("Check with parallel execution.");
> - igt_subtest("normal") {
> - intel_allocator_multiprocess_start();
> - igt_fork(child, ncpus)
> - run_test(fd, count, end);
> - igt_waitchildren();
> - intel_allocator_multiprocess_stop();
> + igt_subtest_group {
> + igt_fixture {
> + intel_allocator_multiprocess_start();
> + }
> +
> + igt_describe("Check with parallel execution.");
> + igt_subtest("normal") {
> + igt_fork(child, ncpus)
> + run_test(fd, count, end);
> + igt_waitchildren();
> + }
> +
> + igt_fixture {
> + intel_allocator_multiprocess_stop();
> + }
> }
>
> igt_fixture
^ permalink raw reply [flat|nested] 20+ messages in thread* [igt-dev] ✗ Fi.CI.BAT: failure for tests/gem_*: Migrate allocator start/stop to fixtures (rev2)
2023-07-19 15:36 [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures Zbigniew Kempczyński
2023-07-19 16:24 ` [igt-dev] ○ CI.xeBAT: info for tests/gem_*: Migrate allocator start/stop to fixtures (rev2) Patchwork
2023-07-19 16:34 ` [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures Karolina Stolarek
@ 2023-07-19 16:37 ` Patchwork
2023-07-19 17:09 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/gem_*: Migrate allocator start/stop to fixtures (rev3) Patchwork
` (9 subsequent siblings)
12 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-07-19 16:37 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 13794 bytes --]
== Series Details ==
Series: tests/gem_*: Migrate allocator start/stop to fixtures (rev2)
URL : https://patchwork.freedesktop.org/series/120968/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13396 -> IGTPW_9434
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9434 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9434, please notify your bug team 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_9434/index.html
Participating hosts (42 -> 43)
------------------------------
Additional (2): fi-kbl-soraka bat-rpls-2
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9434:
### IGT changes ###
#### Possible regressions ####
* igt@debugfs_test@read_all_entries:
- bat-mtlp-6: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-mtlp-6/igt@debugfs_test@read_all_entries.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-mtlp-6/igt@debugfs_test@read_all_entries.html
#### Warnings ####
* igt@i915_selftest@live@slpc:
- bat-mtlp-6: [DMESG-WARN][3] ([i915#6367]) -> [DMESG-WARN][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-mtlp-6/igt@i915_selftest@live@slpc.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-mtlp-6/igt@i915_selftest@live@slpc.html
Known issues
------------
Here are the changes found in IGTPW_9434 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-rpls-2: NOTRUN -> [SKIP][5] ([i915#7456])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rpls-2/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@info:
- bat-rpls-2: NOTRUN -> [SKIP][6] ([i915#1849] / [i915#2582])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rpls-2/igt@fbdev@info.html
* igt@fbdev@read:
- bat-rpls-2: NOTRUN -> [SKIP][7] ([i915#2582]) +3 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rpls-2/igt@fbdev@read.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#2190])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#4613]) +3 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@verify-random:
- bat-rpls-2: NOTRUN -> [SKIP][10] ([i915#4613]) +3 similar issues
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rpls-2/igt@gem_lmem_swapping@verify-random.html
* igt@gem_tiled_pread_basic:
- bat-rpls-2: NOTRUN -> [SKIP][11] ([i915#3282])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rpls-2/igt@gem_tiled_pread_basic.html
* igt@i915_pm_backlight@basic-brightness:
- bat-rpls-2: NOTRUN -> [SKIP][12] ([i915#7561])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rpls-2/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_pm_rpm@basic-rte:
- fi-cfl-guc: [PASS][13] -> [FAIL][14] ([i915#7940])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
* igt@i915_pm_rpm@module-reload:
- fi-rkl-11600: [PASS][15] -> [FAIL][16] ([i915#7940])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
* igt@i915_pm_rps@basic-api:
- bat-rpls-2: NOTRUN -> [SKIP][17] ([i915#6621])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rpls-2/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_pm:
- bat-rpls-2: NOTRUN -> [DMESG-FAIL][18] ([i915#4258] / [i915#7913])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][19] ([i915#1886] / [i915#7913])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@hangcheck:
- bat-dg2-11: [PASS][20] -> [ABORT][21] ([i915#7913] / [i915#7979])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-dg2-11/igt@i915_selftest@live@hangcheck.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-dg2-11/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@slpc:
- bat-rpls-2: NOTRUN -> [DMESG-WARN][22] ([i915#6367])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rpls-2/igt@i915_selftest@live@slpc.html
- bat-mtlp-8: [PASS][23] -> [DMESG-WARN][24] ([i915#6367])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-mtlp-8/igt@i915_selftest@live@slpc.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-mtlp-8/igt@i915_selftest@live@slpc.html
* igt@kms_busy@basic:
- bat-rpls-2: NOTRUN -> [SKIP][25] ([i915#1845]) +15 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rpls-2/igt@kms_busy@basic.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- bat-rpls-2: NOTRUN -> [SKIP][26] ([i915#7828]) +8 similar issues
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rpls-2/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- fi-kbl-soraka: NOTRUN -> [SKIP][27] ([fdo#109271]) +15 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-rpls-2: NOTRUN -> [SKIP][28] ([i915#3637]) +3 similar issues
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rpls-2/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-rpls-2: NOTRUN -> [SKIP][29] ([fdo#109285])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rpls-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@basic:
- bat-rpls-2: NOTRUN -> [SKIP][30] ([i915#1849])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rpls-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@primary_mmap_gtt:
- bat-rplp-1: NOTRUN -> [SKIP][31] ([i915#1072])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html
* igt@kms_psr@sprite_plane_onoff:
- bat-rpls-2: NOTRUN -> [SKIP][32] ([i915#1072]) +3 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rpls-2/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-rplp-1: NOTRUN -> [ABORT][33] ([i915#8260] / [i915#8668])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html
- bat-rpls-2: NOTRUN -> [SKIP][34] ([i915#3555])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rpls-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-rpls-2: NOTRUN -> [SKIP][35] ([fdo#109295] / [i915#1845] / [i915#3708])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rpls-2/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-write:
- bat-rpls-2: NOTRUN -> [SKIP][36] ([fdo#109295] / [i915#3708]) +2 similar issues
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rpls-2/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@core_auth@basic-auth:
- bat-mtlp-6: [DMESG-WARN][37] -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-mtlp-6/igt@core_auth@basic-auth.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-mtlp-6/igt@core_auth@basic-auth.html
* igt@i915_pm_rpm@basic-rte:
- fi-tgl-1115g4: [FAIL][39] ([i915#7940]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
* igt@i915_selftest@live@gt_heartbeat:
- fi-glk-j4005: [DMESG-FAIL][41] ([i915#5334]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@gt_mocs:
- bat-mtlp-8: [DMESG-FAIL][43] ([i915#7059]) -> [PASS][44]
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@guc:
- bat-rpls-1: [DMESG-WARN][45] ([i915#7852]) -> [PASS][46]
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-rpls-1/igt@i915_selftest@live@guc.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rpls-1/igt@i915_selftest@live@guc.html
#### Warnings ####
* igt@i915_module_load@load:
- bat-adlp-11: [DMESG-WARN][47] ([i915#4423]) -> [ABORT][48] ([i915#4423])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-adlp-11/igt@i915_module_load@load.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-adlp-11/igt@i915_module_load@load.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- fi-cfl-guc: [FAIL][49] ([i915#7691]) -> [FAIL][50] ([i915#7940])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-cfl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/fi-cfl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@kms_psr@sprite_plane_onoff:
- bat-rplp-1: [ABORT][51] ([i915#8442] / [i915#8668] / [i915#8712]) -> [SKIP][52] ([i915#1072])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7852]: https://gitlab.freedesktop.org/drm/intel/issues/7852
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7979]: https://gitlab.freedesktop.org/drm/intel/issues/7979
[i915#8260]: https://gitlab.freedesktop.org/drm/intel/issues/8260
[i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8712]: https://gitlab.freedesktop.org/drm/intel/issues/8712
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7394 -> IGTPW_9434
CI-20190529: 20190529
CI_DRM_13396: da1bb773ff84001b185e7bec54b32b89dff44f91 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9434: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/index.html
IGT_7394: 3b0c82d7e9f1b8708d351243de7f227153793ede @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9434/index.html
[-- Attachment #2: Type: text/html, Size: 16615 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* [igt-dev] ✗ GitLab.Pipeline: warning for tests/gem_*: Migrate allocator start/stop to fixtures (rev3)
2023-07-19 15:36 [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures Zbigniew Kempczyński
` (2 preceding siblings ...)
2023-07-19 16:37 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/gem_*: Migrate allocator start/stop to fixtures (rev2) Patchwork
@ 2023-07-19 17:09 ` Patchwork
2023-07-19 17:40 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
` (8 subsequent siblings)
12 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-07-19 17:09 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
== Series Details ==
Series: tests/gem_*: Migrate allocator start/stop to fixtures (rev3)
URL : https://patchwork.freedesktop.org/series/120968/
State : warning
== Summary ==
Pipeline status: FAILED.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/939754 for the overview.
containers:igt has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/45803319):
Downloading artifacts from coordinator... ok host=gitlab.freedesktop.org id=45803304 responseStatus=200 OK token=64_tfNbB
section_end:1689786521:download_artifacts
section_start:1689786521:step_script
Executing "step_script" stage of the job script
Using docker image sha256:594aa868d31ee3304dee8cae8a3433c89a6fcfcf6c7d420c04cce22f60147176 for registry.freedesktop.org/wayland/ci-templates/buildah:2019-08-13.0 with digest registry.freedesktop.org/wayland/ci-templates/buildah@sha256:7dbcf22cd2c1c7d49db0dc7b4ab207c3d6a4a09bd81cc3b71a688d3727d8749f ...
$ /host/bin/curl --cacert /host/ca-certificates.crt -s -L --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh
Checking if the user of the pipeline is allowed...
Checking if the job's project is part of a well-known group...
Thank you for contributing to freedesktop.org
$ podman login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
Login Succeeded!
$ .gitlab-ci/pull-or-rebuild.sh igt Dockerfile igt
STEP 1: FROM registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora:commit-9c59a804dbe159b40324b72ea37888f4922b8742
Error: error creating build container: Error initializing source docker://registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora:commit-9c59a804dbe159b40324b72ea37888f4922b8742: Error reading manifest commit-9c59a804dbe159b40324b72ea37888f4922b8742 in registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora: received unexpected HTTP status: 500 Internal Server Error
section_end:1689786524:step_script
section_start:1689786524:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1689786525:cleanup_file_variables
ERROR: Job failed: exit code 1
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/939754
^ permalink raw reply [flat|nested] 20+ messages in thread* [igt-dev] ○ CI.xeBAT: info for tests/gem_*: Migrate allocator start/stop to fixtures (rev3)
2023-07-19 15:36 [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures Zbigniew Kempczyński
` (3 preceding siblings ...)
2023-07-19 17:09 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/gem_*: Migrate allocator start/stop to fixtures (rev3) Patchwork
@ 2023-07-19 17:40 ` Patchwork
2023-07-19 17:48 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
` (7 subsequent siblings)
12 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-07-19 17:40 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 358 bytes --]
== Series Details ==
Series: tests/gem_*: Migrate allocator start/stop to fixtures (rev3)
URL : https://patchwork.freedesktop.org/series/120968/
State : info
== Summary ==
Participating hosts:
bat-pvc-2
bat-atsm-2
bat-dg2-oem2
bat-adlp-7
Missing hosts results[0]:
Results: [IGTPW_9435](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9435/index.html)
[-- Attachment #2: Type: text/html, Size: 874 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* [igt-dev] ✗ Fi.CI.BAT: failure for tests/gem_*: Migrate allocator start/stop to fixtures (rev3)
2023-07-19 15:36 [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures Zbigniew Kempczyński
` (4 preceding siblings ...)
2023-07-19 17:40 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
@ 2023-07-19 17:48 ` Patchwork
2023-07-19 20:04 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/gem_*: Migrate allocator start/stop to fixtures (rev4) Patchwork
` (6 subsequent siblings)
12 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-07-19 17:48 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 12563 bytes --]
== Series Details ==
Series: tests/gem_*: Migrate allocator start/stop to fixtures (rev3)
URL : https://patchwork.freedesktop.org/series/120968/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13396 -> IGTPW_9435
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9435 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9435, please notify your bug team 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_9435/index.html
Participating hosts (42 -> 42)
------------------------------
Additional (1): bat-rpls-2
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9435:
### IGT changes ###
#### Possible regressions ####
* igt@debugfs_test@read_all_entries:
- bat-mtlp-6: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-mtlp-6/igt@debugfs_test@read_all_entries.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-mtlp-6/igt@debugfs_test@read_all_entries.html
Known issues
------------
Here are the changes found in IGTPW_9435 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-rpls-2: NOTRUN -> [SKIP][3] ([i915#7456])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@debugfs_test@basic-hwmon.html
- bat-adlp-11: NOTRUN -> [SKIP][4] ([i915#7456])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-adlp-11/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@info:
- bat-rpls-2: NOTRUN -> [SKIP][5] ([i915#1849] / [i915#2582])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@fbdev@info.html
* igt@fbdev@read:
- bat-rpls-2: NOTRUN -> [SKIP][6] ([i915#2582]) +3 similar issues
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@fbdev@read.html
* igt@gem_lmem_swapping@verify-random:
- bat-rpls-2: NOTRUN -> [SKIP][7] ([i915#4613]) +3 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@gem_lmem_swapping@verify-random.html
* igt@gem_tiled_pread_basic:
- bat-adlp-11: NOTRUN -> [SKIP][8] ([i915#3282])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-adlp-11/igt@gem_tiled_pread_basic.html
- bat-rpls-2: NOTRUN -> [SKIP][9] ([i915#3282])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@gem_tiled_pread_basic.html
* igt@i915_pm_backlight@basic-brightness:
- bat-rpls-2: NOTRUN -> [SKIP][10] ([i915#7561])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_pm_rpm@basic-rte:
- fi-cfl-guc: [PASS][11] -> [FAIL][12] ([i915#7940])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
* igt@i915_pm_rps@basic-api:
- bat-rpls-2: NOTRUN -> [SKIP][13] ([i915#6621])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_pm:
- bat-rpls-2: NOTRUN -> [DMESG-FAIL][14] ([i915#4258] / [i915#7913])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@requests:
- bat-rpls-1: [PASS][15] -> [ABORT][16] ([i915#7911] / [i915#7920] / [i915#7982])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-rpls-1/igt@i915_selftest@live@requests.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-1/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@reset:
- bat-rpls-2: NOTRUN -> [ABORT][17] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@i915_selftest@live@reset.html
* igt@kms_busy@basic:
- bat-rpls-2: NOTRUN -> [SKIP][18] ([i915#1845]) +14 similar issues
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@kms_busy@basic.html
* igt@kms_busy@basic@flip:
- bat-adlp-11: NOTRUN -> [ABORT][19] ([i915#4423])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-adlp-11/igt@kms_busy@basic@flip.html
* igt@kms_busy@basic@modeset:
- bat-adlp-11: NOTRUN -> [DMESG-WARN][20] ([i915#4423])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-adlp-11/igt@kms_busy@basic@modeset.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- bat-rpls-2: NOTRUN -> [SKIP][21] ([i915#7828]) +7 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-rpls-2: NOTRUN -> [SKIP][22] ([i915#3637]) +3 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-rpls-2: NOTRUN -> [SKIP][23] ([fdo#109285])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@basic:
- bat-rpls-2: NOTRUN -> [SKIP][24] ([i915#1849])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
- bat-rplp-1: [PASS][25] -> [ABORT][26] ([i915#8442] / [i915#8668])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
* igt@kms_psr@sprite_plane_onoff:
- bat-rpls-2: NOTRUN -> [SKIP][27] ([i915#1072]) +3 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-rpls-2: NOTRUN -> [SKIP][28] ([i915#3555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-rpls-2: NOTRUN -> [SKIP][29] ([fdo#109295] / [i915#1845] / [i915#3708])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-write:
- bat-rpls-2: NOTRUN -> [SKIP][30] ([fdo#109295] / [i915#3708]) +2 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@core_auth@basic-auth:
- bat-adlp-11: [ABORT][31] ([i915#8011]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-adlp-11/igt@core_auth@basic-auth.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-adlp-11/igt@core_auth@basic-auth.html
- bat-mtlp-6: [DMESG-WARN][33] -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-mtlp-6/igt@core_auth@basic-auth.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-mtlp-6/igt@core_auth@basic-auth.html
* igt@i915_module_load@load:
- bat-adlp-11: [DMESG-WARN][35] ([i915#4423]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-adlp-11/igt@i915_module_load@load.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-adlp-11/igt@i915_module_load@load.html
* igt@i915_pm_rpm@basic-rte:
- fi-tgl-1115g4: [FAIL][37] ([i915#7940]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
* igt@i915_pm_rpm@module-reload:
- fi-skl-guc: [FAIL][39] ([i915#7940]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-skl-guc/igt@i915_pm_rpm@module-reload.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/fi-skl-guc/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@gt_heartbeat:
- fi-glk-j4005: [DMESG-FAIL][41] ([i915#5334]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html
#### Warnings ####
* igt@i915_pm_rpm@basic-pci-d3-state:
- fi-cfl-guc: [FAIL][43] ([i915#7691]) -> [FAIL][44] ([i915#7940])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-cfl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/fi-cfl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [DMESG-WARN][45] -> [DMESG-FAIL][46] ([i915#6763])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982
[i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011
[i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347
[i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7394 -> IGTPW_9435
CI-20190529: 20190529
CI_DRM_13396: da1bb773ff84001b185e7bec54b32b89dff44f91 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9435: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/index.html
IGT_7394: 3b0c82d7e9f1b8708d351243de7f227153793ede @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/index.html
[-- Attachment #2: Type: text/html, Size: 14889 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* [igt-dev] ✗ Fi.CI.BAT: failure for tests/gem_*: Migrate allocator start/stop to fixtures (rev4)
2023-07-19 15:36 [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures Zbigniew Kempczyński
` (5 preceding siblings ...)
2023-07-19 17:48 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
@ 2023-07-19 20:04 ` Patchwork
2023-07-20 4:28 ` Zbigniew Kempczyński
2023-07-19 21:05 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
` (5 subsequent siblings)
12 siblings, 1 reply; 20+ messages in thread
From: Patchwork @ 2023-07-19 20:04 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 12787 bytes --]
== Series Details ==
Series: tests/gem_*: Migrate allocator start/stop to fixtures (rev4)
URL : https://patchwork.freedesktop.org/series/120968/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13396 -> IGTPW_9437
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9437 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9437, please notify your bug team 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_9437/index.html
Participating hosts (42 -> 42)
------------------------------
Additional (1): bat-rpls-2
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9437:
### IGT changes ###
#### Possible regressions ####
* igt@debugfs_test@read_all_entries:
- bat-mtlp-6: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-mtlp-6/igt@debugfs_test@read_all_entries.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-mtlp-6/igt@debugfs_test@read_all_entries.html
Known issues
------------
Here are the changes found in IGTPW_9437 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-rpls-2: NOTRUN -> [SKIP][3] ([i915#7456])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@info:
- bat-rpls-2: NOTRUN -> [SKIP][4] ([i915#1849] / [i915#2582])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@fbdev@info.html
* igt@fbdev@read:
- bat-rpls-2: NOTRUN -> [SKIP][5] ([i915#2582]) +3 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@fbdev@read.html
* igt@gem_exec_suspend@basic-s0@smem:
- bat-jsl-3: [PASS][6] -> [ABORT][7] ([i915#5122])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_lmem_swapping@verify-random:
- bat-rpls-2: NOTRUN -> [SKIP][8] ([i915#4613]) +3 similar issues
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@gem_lmem_swapping@verify-random.html
* igt@gem_tiled_pread_basic:
- bat-rpls-2: NOTRUN -> [SKIP][9] ([i915#3282])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@gem_tiled_pread_basic.html
* igt@i915_pm_backlight@basic-brightness:
- bat-rpls-2: NOTRUN -> [SKIP][10] ([i915#7561])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [PASS][11] -> [FAIL][12] ([i915#7940])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-kbl-7567u/igt@i915_pm_rpm@basic-pci-d3-state.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/fi-kbl-7567u/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@basic-rte:
- fi-cfl-guc: [PASS][13] -> [FAIL][14] ([i915#7940])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
* igt@i915_pm_rpm@module-reload:
- fi-rkl-11600: [PASS][15] -> [FAIL][16] ([i915#7940])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
* igt@i915_pm_rps@basic-api:
- bat-rpls-2: NOTRUN -> [SKIP][17] ([i915#6621])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_pm:
- bat-rpls-2: NOTRUN -> [DMESG-FAIL][18] ([i915#4258] / [i915#7913])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@reset:
- bat-rpls-2: NOTRUN -> [ABORT][19] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#7981] / [i915#8347])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@i915_selftest@live@reset.html
* igt@i915_selftest@live@workarounds:
- bat-rpls-1: [PASS][20] -> [DMESG-FAIL][21] ([i915#6763])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-rpls-1/igt@i915_selftest@live@workarounds.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-1/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-jsl-3: [PASS][22] -> [FAIL][23] ([fdo#103375])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_busy@basic:
- bat-rpls-2: NOTRUN -> [SKIP][24] ([i915#1845]) +14 similar issues
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@kms_busy@basic.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- bat-rpls-2: NOTRUN -> [SKIP][25] ([i915#7828]) +7 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-rpls-2: NOTRUN -> [SKIP][26] ([i915#3637]) +3 similar issues
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-rpls-2: NOTRUN -> [SKIP][27] ([fdo#109285])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@basic:
- bat-rpls-2: NOTRUN -> [SKIP][28] ([i915#1849])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@sprite_plane_onoff:
- bat-rpls-2: NOTRUN -> [SKIP][29] ([i915#1072]) +3 similar issues
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-rpls-2: NOTRUN -> [SKIP][30] ([i915#3555])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-rpls-2: NOTRUN -> [SKIP][31] ([fdo#109295] / [i915#1845] / [i915#3708])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-write:
- bat-rpls-2: NOTRUN -> [SKIP][32] ([fdo#109295] / [i915#3708]) +2 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@core_auth@basic-auth:
- bat-mtlp-6: [DMESG-WARN][33] -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-mtlp-6/igt@core_auth@basic-auth.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-mtlp-6/igt@core_auth@basic-auth.html
* igt@i915_pm_rpm@basic-rte:
- fi-tgl-1115g4: [FAIL][35] ([i915#7940]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
* igt@i915_selftest@live@gt_heartbeat:
- fi-glk-j4005: [DMESG-FAIL][37] ([i915#5334]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@guc:
- bat-rpls-1: [DMESG-WARN][39] ([i915#7852]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-rpls-1/igt@i915_selftest@live@guc.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-1/igt@i915_selftest@live@guc.html
#### Warnings ####
* igt@i915_pm_rpm@basic-pci-d3-state:
- fi-cfl-guc: [FAIL][41] ([i915#7691]) -> [FAIL][42] ([i915#7940])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-cfl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/fi-cfl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
- fi-skl-guc: [FAIL][43] ([i915#7940]) -> [FAIL][44] ([i915#7691])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_selftest@live@requests:
- bat-mtlp-6: [DMESG-WARN][45] -> [ABORT][46] ([i915#7982])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-mtlp-6/igt@i915_selftest@live@requests.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-mtlp-6/igt@i915_selftest@live@requests.html
* igt@kms_psr@cursor_plane_move:
- bat-rplp-1: [SKIP][47] ([i915#1072]) -> [ABORT][48] ([i915#8434] / [i915#8668])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-rplp-1/igt@kms_psr@cursor_plane_move.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rplp-1/igt@kms_psr@cursor_plane_move.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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7852]: https://gitlab.freedesktop.org/drm/intel/issues/7852
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981
[i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982
[i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347
[i915#8434]: https://gitlab.freedesktop.org/drm/intel/issues/8434
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7394 -> IGTPW_9437
CI-20190529: 20190529
CI_DRM_13396: da1bb773ff84001b185e7bec54b32b89dff44f91 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9437: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/index.html
IGT_7394: 3b0c82d7e9f1b8708d351243de7f227153793ede @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/index.html
[-- Attachment #2: Type: text/html, Size: 15092 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* Re: [igt-dev] ✗ Fi.CI.BAT: failure for tests/gem_*: Migrate allocator start/stop to fixtures (rev4)
2023-07-19 20:04 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/gem_*: Migrate allocator start/stop to fixtures (rev4) Patchwork
@ 2023-07-20 4:28 ` Zbigniew Kempczyński
0 siblings, 0 replies; 20+ messages in thread
From: Zbigniew Kempczyński @ 2023-07-20 4:28 UTC (permalink / raw)
To: igt-dev; +Cc: SaiX Nandan Yedireswarapu
On Wed, Jul 19, 2023 at 08:04:38PM +0000, Patchwork wrote:
> Patch Details
>
> Series: tests/gem_*: Migrate allocator start/stop to fixtures (rev4)
> URL: https://patchwork.freedesktop.org/series/120968/
> State: failure
> Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/index.html
>
> CI Bug Log - changes from CI_DRM_13396 -> IGTPW_9437
>
> Summary
>
> FAILURE
>
> Serious unknown changes coming with IGTPW_9437 absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_9437, please notify your bug team 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_9437/index.html
>
> Participating hosts (42 -> 42)
>
> Additional (1): bat-rpls-2
> Missing (1): fi-snb-2520m
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in IGTPW_9437:
>
> IGT changes
>
> Possible regressions
>
> * igt@debugfs_test@read_all_entries:
> * bat-mtlp-6: PASS -> DMESG-WARN
Unfortunately CI stucks here but this is not related to the change.
May I ask for full run?
--
Zbigniew
>
> Known issues
>
> Here are the changes found in IGTPW_9437 that come from known issues:
>
> IGT changes
>
> Issues hit
>
> * igt@debugfs_test@basic-hwmon:
>
> * bat-rpls-2: NOTRUN -> SKIP (i915#7456)
> * igt@fbdev@info:
>
> * bat-rpls-2: NOTRUN -> SKIP (i915#1849 / i915#2582)
> * igt@fbdev@read:
>
> * bat-rpls-2: NOTRUN -> SKIP (i915#2582) +3 similar issues
> * igt@gem_exec_suspend@basic-s0@smem:
>
> * bat-jsl-3: PASS -> ABORT (i915#5122)
> * igt@gem_lmem_swapping@verify-random:
>
> * bat-rpls-2: NOTRUN -> SKIP (i915#4613) +3 similar issues
> * igt@gem_tiled_pread_basic:
>
> * bat-rpls-2: NOTRUN -> SKIP (i915#3282)
> * igt@i915_pm_backlight@basic-brightness:
>
> * bat-rpls-2: NOTRUN -> SKIP (i915#7561)
> * igt@i915_pm_rpm@basic-pci-d3-state:
>
> * fi-kbl-7567u: PASS -> FAIL (i915#7940)
> * igt@i915_pm_rpm@basic-rte:
>
> * fi-cfl-guc: PASS -> FAIL (i915#7940)
> * igt@i915_pm_rpm@module-reload:
>
> * fi-rkl-11600: PASS -> FAIL (i915#7940)
> * igt@i915_pm_rps@basic-api:
>
> * bat-rpls-2: NOTRUN -> SKIP (i915#6621)
> * igt@i915_selftest@live@gt_pm:
>
> * bat-rpls-2: NOTRUN -> DMESG-FAIL (i915#4258 / i915#7913)
> * igt@i915_selftest@live@reset:
>
> * bat-rpls-2: NOTRUN -> ABORT (i915#4983 / i915#7461 / i915#7913 /
> i915#7981 / i915#8347)
> * igt@i915_selftest@live@workarounds:
>
> * bat-rpls-1: PASS -> DMESG-FAIL (i915#6763)
> * igt@i915_suspend@basic-s3-without-i915:
>
> * bat-jsl-3: PASS -> FAIL (fdo#103375)
> * igt@kms_busy@basic:
>
> * bat-rpls-2: NOTRUN -> SKIP (i915#1845) +14 similar issues
> * igt@kms_chamelium_edid@hdmi-edid-read:
>
> * bat-rpls-2: NOTRUN -> SKIP (i915#7828) +7 similar issues
> * igt@kms_flip@basic-flip-vs-dpms:
>
> * bat-rpls-2: NOTRUN -> SKIP (i915#3637) +3 similar issues
> * igt@kms_force_connector_basic@force-load-detect:
>
> * bat-rpls-2: NOTRUN -> SKIP (fdo#109285)
> * igt@kms_frontbuffer_tracking@basic:
>
> * bat-rpls-2: NOTRUN -> SKIP (i915#1849)
> * igt@kms_psr@sprite_plane_onoff:
>
> * bat-rpls-2: NOTRUN -> SKIP (i915#1072) +3 similar issues
> * igt@kms_setmode@basic-clone-single-crtc:
>
> * bat-rpls-2: NOTRUN -> SKIP (i915#3555)
> * igt@prime_vgem@basic-fence-flip:
>
> * bat-rpls-2: NOTRUN -> SKIP (fdo#109295 / i915#1845 / i915#3708)
> * igt@prime_vgem@basic-write:
>
> * bat-rpls-2: NOTRUN -> SKIP (fdo#109295 / i915#3708) +2 similar
> issues
>
> Possible fixes
>
> * igt@core_auth@basic-auth:
>
> * bat-mtlp-6: DMESG-WARN -> PASS
> * igt@i915_pm_rpm@basic-rte:
>
> * fi-tgl-1115g4: FAIL (i915#7940) -> PASS
> * igt@i915_selftest@live@gt_heartbeat:
>
> * fi-glk-j4005: DMESG-FAIL (i915#5334) -> PASS
> * igt@i915_selftest@live@guc:
>
> * bat-rpls-1: DMESG-WARN (i915#7852) -> PASS
>
> Warnings
>
> * igt@i915_pm_rpm@basic-pci-d3-state:
>
> * fi-cfl-guc: FAIL (i915#7691) -> FAIL (i915#7940)
>
> * fi-skl-guc: FAIL (i915#7940) -> FAIL (i915#7691)
>
> * igt@i915_selftest@live@requests:
>
> * bat-mtlp-6: DMESG-WARN -> ABORT (i915#7982)
> * igt@kms_psr@cursor_plane_move:
>
> * bat-rplp-1: SKIP (i915#1072) -> ABORT (i915#8434 / i915#8668)
>
> {name}: This element is suppressed. This means it is ignored when
> computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
> Build changes
>
> * CI: CI-20190529 -> None
> * IGT: IGT_7394 -> IGTPW_9437
>
> CI-20190529: 20190529
> CI_DRM_13396: da1bb773ff84001b185e7bec54b32b89dff44f91 @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_9437: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/index.html
> IGT_7394: 3b0c82d7e9f1b8708d351243de7f227153793ede @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
^ permalink raw reply [flat|nested] 20+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for tests/gem_*: Migrate allocator start/stop to fixtures (rev4)
2023-07-19 15:36 [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures Zbigniew Kempczyński
` (6 preceding siblings ...)
2023-07-19 20:04 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/gem_*: Migrate allocator start/stop to fixtures (rev4) Patchwork
@ 2023-07-19 21:05 ` Patchwork
2023-07-20 5:28 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
` (4 subsequent siblings)
12 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-07-19 21:05 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 358 bytes --]
== Series Details ==
Series: tests/gem_*: Migrate allocator start/stop to fixtures (rev4)
URL : https://patchwork.freedesktop.org/series/120968/
State : info
== Summary ==
Participating hosts:
bat-pvc-2
bat-atsm-2
bat-dg2-oem2
bat-adlp-7
Missing hosts results[0]:
Results: [IGTPW_9437](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9437/index.html)
[-- Attachment #2: Type: text/html, Size: 874 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_*: Migrate allocator start/stop to fixtures (rev4)
2023-07-19 15:36 [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures Zbigniew Kempczyński
` (7 preceding siblings ...)
2023-07-19 21:05 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
@ 2023-07-20 5:28 ` Patchwork
2023-07-20 5:36 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_*: Migrate allocator start/stop to fixtures (rev3) Patchwork
` (3 subsequent siblings)
12 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-07-20 5:28 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 12432 bytes --]
== Series Details ==
Series: tests/gem_*: Migrate allocator start/stop to fixtures (rev4)
URL : https://patchwork.freedesktop.org/series/120968/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13396 -> IGTPW_9437
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/index.html
Participating hosts (42 -> 42)
------------------------------
Additional (1): bat-rpls-2
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9437 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-rpls-2: NOTRUN -> [SKIP][1] ([i915#7456])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@debugfs_test@basic-hwmon.html
* igt@debugfs_test@read_all_entries:
- bat-mtlp-6: [PASS][2] -> [DMESG-WARN][3] ([i915#8937])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-mtlp-6/igt@debugfs_test@read_all_entries.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-mtlp-6/igt@debugfs_test@read_all_entries.html
* igt@fbdev@info:
- bat-rpls-2: NOTRUN -> [SKIP][4] ([i915#1849] / [i915#2582])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@fbdev@info.html
* igt@fbdev@read:
- bat-rpls-2: NOTRUN -> [SKIP][5] ([i915#2582]) +3 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@fbdev@read.html
* igt@gem_exec_suspend@basic-s0@smem:
- bat-jsl-3: [PASS][6] -> [ABORT][7] ([i915#5122])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_lmem_swapping@verify-random:
- bat-rpls-2: NOTRUN -> [SKIP][8] ([i915#4613]) +3 similar issues
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@gem_lmem_swapping@verify-random.html
* igt@gem_tiled_pread_basic:
- bat-rpls-2: NOTRUN -> [SKIP][9] ([i915#3282])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@gem_tiled_pread_basic.html
* igt@i915_pm_backlight@basic-brightness:
- bat-rpls-2: NOTRUN -> [SKIP][10] ([i915#7561])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [PASS][11] -> [FAIL][12] ([i915#7940])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-kbl-7567u/igt@i915_pm_rpm@basic-pci-d3-state.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/fi-kbl-7567u/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@basic-rte:
- fi-cfl-guc: [PASS][13] -> [FAIL][14] ([i915#7940])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
* igt@i915_pm_rpm@module-reload:
- fi-rkl-11600: [PASS][15] -> [FAIL][16] ([i915#7940])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
* igt@i915_pm_rps@basic-api:
- bat-rpls-2: NOTRUN -> [SKIP][17] ([i915#6621])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_pm:
- bat-rpls-2: NOTRUN -> [DMESG-FAIL][18] ([i915#4258] / [i915#7913])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@reset:
- bat-rpls-2: NOTRUN -> [ABORT][19] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#7981] / [i915#8347])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@i915_selftest@live@reset.html
* igt@i915_selftest@live@workarounds:
- bat-rpls-1: [PASS][20] -> [DMESG-FAIL][21] ([i915#6763])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-rpls-1/igt@i915_selftest@live@workarounds.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-1/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-jsl-3: [PASS][22] -> [FAIL][23] ([fdo#103375])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_busy@basic:
- bat-rpls-2: NOTRUN -> [SKIP][24] ([i915#1845]) +14 similar issues
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@kms_busy@basic.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- bat-rpls-2: NOTRUN -> [SKIP][25] ([i915#7828]) +7 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-rpls-2: NOTRUN -> [SKIP][26] ([i915#3637]) +3 similar issues
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-rpls-2: NOTRUN -> [SKIP][27] ([fdo#109285])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@basic:
- bat-rpls-2: NOTRUN -> [SKIP][28] ([i915#1849])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@sprite_plane_onoff:
- bat-rpls-2: NOTRUN -> [SKIP][29] ([i915#1072]) +3 similar issues
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-rpls-2: NOTRUN -> [SKIP][30] ([i915#3555])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-rpls-2: NOTRUN -> [SKIP][31] ([fdo#109295] / [i915#1845] / [i915#3708])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-write:
- bat-rpls-2: NOTRUN -> [SKIP][32] ([fdo#109295] / [i915#3708]) +2 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-2/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@core_auth@basic-auth:
- bat-mtlp-6: [DMESG-WARN][33] ([i915#8937]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-mtlp-6/igt@core_auth@basic-auth.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-mtlp-6/igt@core_auth@basic-auth.html
* igt@i915_pm_rpm@basic-rte:
- fi-tgl-1115g4: [FAIL][35] ([i915#7940]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
* igt@i915_selftest@live@gt_heartbeat:
- fi-glk-j4005: [DMESG-FAIL][37] ([i915#5334]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@guc:
- bat-rpls-1: [DMESG-WARN][39] ([i915#7852]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-rpls-1/igt@i915_selftest@live@guc.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rpls-1/igt@i915_selftest@live@guc.html
#### Warnings ####
* igt@i915_pm_rpm@basic-pci-d3-state:
- fi-cfl-guc: [FAIL][41] ([i915#7691]) -> [FAIL][42] ([i915#7940])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-cfl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/fi-cfl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
- fi-skl-guc: [FAIL][43] ([i915#7940]) -> [FAIL][44] ([i915#7691])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_selftest@live@requests:
- bat-mtlp-6: [DMESG-WARN][45] ([i915#8937]) -> [ABORT][46] ([i915#7982])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-mtlp-6/igt@i915_selftest@live@requests.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-mtlp-6/igt@i915_selftest@live@requests.html
* igt@kms_psr@cursor_plane_move:
- bat-rplp-1: [SKIP][47] ([i915#1072]) -> [ABORT][48] ([i915#8434] / [i915#8668])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-rplp-1/igt@kms_psr@cursor_plane_move.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/bat-rplp-1/igt@kms_psr@cursor_plane_move.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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7852]: https://gitlab.freedesktop.org/drm/intel/issues/7852
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981
[i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982
[i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347
[i915#8434]: https://gitlab.freedesktop.org/drm/intel/issues/8434
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8937]: https://gitlab.freedesktop.org/drm/intel/issues/8937
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7394 -> IGTPW_9437
CI-20190529: 20190529
CI_DRM_13396: da1bb773ff84001b185e7bec54b32b89dff44f91 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9437: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/index.html
IGT_7394: 3b0c82d7e9f1b8708d351243de7f227153793ede @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/index.html
[-- Attachment #2: Type: text/html, Size: 14855 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_*: Migrate allocator start/stop to fixtures (rev3)
2023-07-19 15:36 [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures Zbigniew Kempczyński
` (8 preceding siblings ...)
2023-07-20 5:28 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-07-20 5:36 ` Patchwork
2023-07-20 7:29 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/gem_*: Migrate allocator start/stop to fixtures (rev4) Patchwork
` (2 subsequent siblings)
12 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-07-20 5:36 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 12208 bytes --]
== Series Details ==
Series: tests/gem_*: Migrate allocator start/stop to fixtures (rev3)
URL : https://patchwork.freedesktop.org/series/120968/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13396 -> IGTPW_9435
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/index.html
Participating hosts (42 -> 42)
------------------------------
Additional (1): bat-rpls-2
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9435 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-rpls-2: NOTRUN -> [SKIP][1] ([i915#7456])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@debugfs_test@basic-hwmon.html
- bat-adlp-11: NOTRUN -> [SKIP][2] ([i915#7456])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-adlp-11/igt@debugfs_test@basic-hwmon.html
* igt@debugfs_test@read_all_entries:
- bat-mtlp-6: [PASS][3] -> [DMESG-WARN][4] ([i915#8937])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-mtlp-6/igt@debugfs_test@read_all_entries.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-mtlp-6/igt@debugfs_test@read_all_entries.html
* igt@fbdev@info:
- bat-rpls-2: NOTRUN -> [SKIP][5] ([i915#1849] / [i915#2582])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@fbdev@info.html
* igt@fbdev@read:
- bat-rpls-2: NOTRUN -> [SKIP][6] ([i915#2582]) +3 similar issues
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@fbdev@read.html
* igt@gem_lmem_swapping@verify-random:
- bat-rpls-2: NOTRUN -> [SKIP][7] ([i915#4613]) +3 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@gem_lmem_swapping@verify-random.html
* igt@gem_tiled_pread_basic:
- bat-adlp-11: NOTRUN -> [SKIP][8] ([i915#3282])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-adlp-11/igt@gem_tiled_pread_basic.html
- bat-rpls-2: NOTRUN -> [SKIP][9] ([i915#3282])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@gem_tiled_pread_basic.html
* igt@i915_pm_backlight@basic-brightness:
- bat-rpls-2: NOTRUN -> [SKIP][10] ([i915#7561])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_pm_rpm@basic-rte:
- fi-cfl-guc: [PASS][11] -> [FAIL][12] ([i915#7940])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
* igt@i915_pm_rps@basic-api:
- bat-rpls-2: NOTRUN -> [SKIP][13] ([i915#6621])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_pm:
- bat-rpls-2: NOTRUN -> [DMESG-FAIL][14] ([i915#4258] / [i915#7913])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@requests:
- bat-rpls-1: [PASS][15] -> [ABORT][16] ([i915#7911] / [i915#7920] / [i915#7982])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-rpls-1/igt@i915_selftest@live@requests.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-1/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@reset:
- bat-rpls-2: NOTRUN -> [ABORT][17] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@i915_selftest@live@reset.html
* igt@kms_busy@basic:
- bat-rpls-2: NOTRUN -> [SKIP][18] ([i915#1845]) +14 similar issues
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@kms_busy@basic.html
* igt@kms_busy@basic@flip:
- bat-adlp-11: NOTRUN -> [ABORT][19] ([i915#4423])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-adlp-11/igt@kms_busy@basic@flip.html
* igt@kms_busy@basic@modeset:
- bat-adlp-11: NOTRUN -> [DMESG-WARN][20] ([i915#4423])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-adlp-11/igt@kms_busy@basic@modeset.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- bat-rpls-2: NOTRUN -> [SKIP][21] ([i915#7828]) +7 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-rpls-2: NOTRUN -> [SKIP][22] ([i915#3637]) +3 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-rpls-2: NOTRUN -> [SKIP][23] ([fdo#109285])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@basic:
- bat-rpls-2: NOTRUN -> [SKIP][24] ([i915#1849])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
- bat-rplp-1: [PASS][25] -> [ABORT][26] ([i915#8442] / [i915#8668])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
* igt@kms_psr@sprite_plane_onoff:
- bat-rpls-2: NOTRUN -> [SKIP][27] ([i915#1072]) +3 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-rpls-2: NOTRUN -> [SKIP][28] ([i915#3555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-rpls-2: NOTRUN -> [SKIP][29] ([fdo#109295] / [i915#1845] / [i915#3708])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-write:
- bat-rpls-2: NOTRUN -> [SKIP][30] ([fdo#109295] / [i915#3708]) +2 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-rpls-2/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@core_auth@basic-auth:
- bat-adlp-11: [ABORT][31] ([i915#8011]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-adlp-11/igt@core_auth@basic-auth.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-adlp-11/igt@core_auth@basic-auth.html
- bat-mtlp-6: [DMESG-WARN][33] ([i915#8937]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-mtlp-6/igt@core_auth@basic-auth.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-mtlp-6/igt@core_auth@basic-auth.html
* igt@i915_module_load@load:
- bat-adlp-11: [DMESG-WARN][35] ([i915#4423]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-adlp-11/igt@i915_module_load@load.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-adlp-11/igt@i915_module_load@load.html
* igt@i915_pm_rpm@basic-rte:
- fi-tgl-1115g4: [FAIL][37] ([i915#7940]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
* igt@i915_pm_rpm@module-reload:
- fi-skl-guc: [FAIL][39] ([i915#7940]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-skl-guc/igt@i915_pm_rpm@module-reload.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/fi-skl-guc/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@gt_heartbeat:
- fi-glk-j4005: [DMESG-FAIL][41] ([i915#5334]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html
#### Warnings ####
* igt@i915_pm_rpm@basic-pci-d3-state:
- fi-cfl-guc: [FAIL][43] ([i915#7691]) -> [FAIL][44] ([i915#7940])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/fi-cfl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/fi-cfl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [DMESG-WARN][45] ([i915#8937]) -> [DMESG-FAIL][46] ([i915#6763])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982
[i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011
[i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347
[i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8937]: https://gitlab.freedesktop.org/drm/intel/issues/8937
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7394 -> IGTPW_9435
CI-20190529: 20190529
CI_DRM_13396: da1bb773ff84001b185e7bec54b32b89dff44f91 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9435: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/index.html
IGT_7394: 3b0c82d7e9f1b8708d351243de7f227153793ede @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/index.html
[-- Attachment #2: Type: text/html, Size: 14652 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* [igt-dev] ✗ Fi.CI.IGT: failure for tests/gem_*: Migrate allocator start/stop to fixtures (rev4)
2023-07-19 15:36 [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures Zbigniew Kempczyński
` (9 preceding siblings ...)
2023-07-20 5:36 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_*: Migrate allocator start/stop to fixtures (rev3) Patchwork
@ 2023-07-20 7:29 ` Patchwork
2023-07-20 8:19 ` Zbigniew Kempczyński
2023-07-20 8:25 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/gem_*: Migrate allocator start/stop to fixtures (rev3) Patchwork
2023-07-20 11:05 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/gem_*: Migrate allocator start/stop to fixtures (rev4) Patchwork
12 siblings, 1 reply; 20+ messages in thread
From: Patchwork @ 2023-07-20 7:29 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 78079 bytes --]
== Series Details ==
Series: tests/gem_*: Migrate allocator start/stop to fixtures (rev4)
URL : https://patchwork.freedesktop.org/series/120968/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13396_full -> IGTPW_9437_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9437_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9437_full, please notify your bug team 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_9437/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9437_full:
### IGT changes ###
#### Possible regressions ####
* igt@vgem_basic@dmabuf-fence:
- shard-mtlp: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-4/igt@vgem_basic@dmabuf-fence.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-1/igt@vgem_basic@dmabuf-fence.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@i915_pm_freq_api@freq-suspend@gt0}:
- shard-dg2: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-11/igt@i915_pm_freq_api@freq-suspend@gt0.html
New tests
---------
New tests have been introduced between CI_DRM_13396_full and IGTPW_9437_full:
### New IGT tests (24) ###
* igt@kms_flip@wf_vblank-ts-check@a-hdmi-a4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_flip@wf_vblank-ts-check@b-hdmi-a4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_flip@wf_vblank-ts-check@c-hdmi-a4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_flip@wf_vblank-ts-check@d-hdmi-a4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_pipe_crc_basic@nonblocking-crc@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_pipe_crc_basic@nonblocking-crc@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_9437_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [PASS][5] -> [FAIL][6] ([i915#7742]) +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-2/igt@drm_fdinfo@virtual-busy-all.html
* igt@drm_fdinfo@virtual-busy-idle-all:
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-2/igt@drm_fdinfo@virtual-busy-idle-all.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#6335])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#6335])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-4/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8555])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@legacy-engines-mixed:
- shard-snb: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#1099]) +2 similar issues
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-snb2/igt@gem_ctx_persistence@legacy-engines-mixed.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][13] ([i915#8898])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-snb1/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_await@wide-contexts:
- shard-dg2: [PASS][14] -> [FAIL][15] ([i915#5892])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-8/igt@gem_exec_await@wide-contexts.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-1/igt@gem_exec_await@wide-contexts.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#4525])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-4/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@pi@vcs0:
- shard-mtlp: [PASS][17] -> [FAIL][18] ([i915#4475])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-7/igt@gem_exec_capture@pi@vcs0.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: NOTRUN -> [FAIL][19] ([i915#2842]) +3 similar issues
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [PASS][20] -> [FAIL][21] ([i915#2842]) +1 similar issue
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-tglu: [PASS][22] -> [FAIL][23] ([i915#2842])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-glk: [PASS][24] -> [FAIL][25] ([i915#2842])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-glk8/igt@gem_exec_fair@basic-pace@rcs0.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#3539])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-5/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fence@submit3:
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4812]) +1 similar issue
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-3/igt@gem_exec_fence@submit3.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#4812])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-2/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) +1 similar issue
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-8/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#3281]) +3 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-range:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3281]) +5 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@gem_exec_reloc@basic-range.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-apl: [PASS][32] -> [DMESG-WARN][33] ([i915#8585]) +17 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl4/igt@gem_exec_reloc@basic-wc-read.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-apl3/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3281]) +3 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-7/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#7276])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4860])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4860])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_lmem_swapping@massive-random:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4613]) +1 similar issue
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@random-engines:
- shard-tglu: NOTRUN -> [SKIP][39] ([i915#4613]) +1 similar issue
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-3/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613]) +2 similar issues
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@gem_lmem_swapping@verify.html
* igt@gem_mmap@basic-small-bo:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4083]) +1 similar issue
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-3/igt@gem_mmap@basic-small-bo.html
* igt@gem_mmap_gtt@big-bo-tiledy:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4077]) +3 similar issues
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-3/igt@gem_mmap_gtt@big-bo-tiledy.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4077]) +3 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-snb: [PASS][44] -> [ABORT][45] ([i915#5161])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-x.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-snb1/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4083]) +1 similar issue
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-5/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#3282]) +1 similar issue
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-3/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_pread@bench:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3282]) +1 similar issue
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@gem_pread@bench.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4270])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-11/igt@gem_pxp@protected-raw-src-copy-not-readible.html
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#4270])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@gem_pxp@protected-raw-src-copy-not-readible.html
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4270])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#4270])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-2/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#8428]) +4 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4079]) +2 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-6/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#3282]) +3 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4079]) +1 similar issue
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-3/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#3297])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-11/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#3297])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-3/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#3297])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen3_render_tiledy_blits:
- shard-dg2: NOTRUN -> [SKIP][60] ([fdo#109289]) +1 similar issue
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-3/igt@gen3_render_tiledy_blits.html
- shard-rkl: NOTRUN -> [SKIP][61] ([fdo#109289])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@gen3_render_tiledy_blits.html
* igt@gen9_exec_parse@allowed-all:
- shard-apl: [PASS][62] -> [ABORT][63] ([i915#5566])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl2/igt@gen9_exec_parse@allowed-all.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-apl6/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#2527])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu: NOTRUN -> [SKIP][65] ([i915#2527] / [i915#2856])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-9/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#2856])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-2/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_hangman@gt-engine-error@vcs0:
- shard-mtlp: [PASS][67] -> [FAIL][68] ([i915#7069])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-5/igt@i915_hangman@gt-engine-error@vcs0.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@i915_hangman@gt-engine-error@vcs0.html
* igt@i915_pm_backlight@fade-with-suspend:
- shard-tglu: NOTRUN -> [SKIP][69] ([i915#7561])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-8/igt@i915_pm_backlight@fade-with-suspend.html
* igt@i915_pm_rpm@cursor-dpms:
- shard-tglu: [PASS][70] -> [FAIL][71] ([i915#7940]) +1 similar issue
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-9/igt@i915_pm_rpm@cursor-dpms.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-6/igt@i915_pm_rpm@cursor-dpms.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-rkl: [PASS][72] -> [SKIP][73] ([i915#1397])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-6/igt@i915_pm_rpm@dpms-non-lpsp.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][74] -> [SKIP][75] ([i915#1397])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-11/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@i915_pm_sseu@full-enable:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8437])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#5723])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@gt_mocs:
- shard-mtlp: [PASS][78] -> [DMESG-FAIL][79] ([i915#7059])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-3/igt@i915_selftest@live@gt_mocs.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@i915_selftest@live@gt_mocs.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: NOTRUN -> [FAIL][80] ([fdo#103375])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#6645])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-3/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#8502]) +3 similar issues
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-b-dp-2:
- shard-dg2: NOTRUN -> [FAIL][83] ([i915#8247]) +3 similar issues
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-12/igt@kms_async_flips@crc@pipe-b-dp-2.html
* igt@kms_async_flips@crc@pipe-b-vga-1:
- shard-snb: NOTRUN -> [FAIL][84] ([i915#8247]) +1 similar issue
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-snb6/igt@kms_async_flips@crc@pipe-b-vga-1.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#6229])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-1/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu: NOTRUN -> [SKIP][86] ([i915#404])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#5286]) +1 similar issue
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: [PASS][88] -> [FAIL][89] ([i915#5138])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][90] ([fdo#111615] / [i915#5286])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][91] ([fdo#111614] / [i915#3638]) +1 similar issue
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
- shard-dg2: NOTRUN -> [SKIP][92] ([fdo#111614])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][93] ([fdo#111614])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][94] ([fdo#111614])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: NOTRUN -> [FAIL][95] ([i915#3743])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#5190]) +4 similar issues
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][97] ([fdo#110723]) +3 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][98] ([fdo#111615]) +1 similar issue
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#4538] / [i915#5190]) +2 similar issues
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_joiner@2x-modeset:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#2705])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-4/igt@kms_big_joiner@2x-modeset.html
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#2705])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-2/igt@kms_big_joiner@2x-modeset.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#3734] / [i915#5354] / [i915#6095]) +2 similar issues
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#5354] / [i915#6095])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_mtl_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#5354] / [i915#6095]) +6 similar issues
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#3689] / [i915#5354] / [i915#6095])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-6/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#6095]) +10 similar issues
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-8/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#3689] / [i915#3886] / [i915#5354]) +5 similar issues
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-1/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#3886] / [i915#5354] / [i915#6095])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +2 similar issues
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-2/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#5354]) +11 similar issues
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-10/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][111] ([i915#5354] / [i915#6095]) +3 similar issues
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-2/igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#3689] / [i915#5354])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-12/igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs.html
* igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#5354]) +12 similar issues
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4087] / [i915#7213]) +3 similar issues
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-c-dp-2:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#4087]) +3 similar issues
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-12/igt@kms_cdclk@plane-scaling@pipe-c-dp-2.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-tglu: NOTRUN -> [SKIP][116] ([fdo#111827])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-5/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2: NOTRUN -> [SKIP][117] ([fdo#111827])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-2/igt@kms_chamelium_color@ctm-max.html
- shard-rkl: NOTRUN -> [SKIP][118] ([fdo#111827])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-2/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-mtlp: NOTRUN -> [SKIP][119] ([fdo#111827])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-4/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#7828]) +1 similar issue
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-5/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#7828]) +1 similar issue
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-4/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#7828]) +1 similar issue
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-7/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#7828]) +2 similar issues
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-4/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_color@deep-color:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#3555]) +1 similar issue
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#6944] / [i915#7116] / [i915#7118])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-5/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#7118])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@lic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][127] ([i915#7173])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html
* igt@kms_content_protection@type1:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#6944]) +1 similar issue
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#8814]) +1 similar issue
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1:
- shard-apl: [PASS][130] -> [ABORT][131] ([i915#180])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl6/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-apl6/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html
* igt@kms_cursor_edge_walk@128x128-right-edge@pipe-a-dp-1:
- shard-apl: [PASS][132] -> [DMESG-WARN][133] ([i915#1982] / [i915#8585])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl3/igt@kms_cursor_edge_walk@128x128-right-edge@pipe-a-dp-1.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-apl3/igt@kms_cursor_edge_walk@128x128-right-edge@pipe-a-dp-1.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][134] ([fdo#109274] / [fdo#111767] / [i915#5354]) +1 similar issue
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-10/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
- shard-snb: NOTRUN -> [SKIP][135] ([fdo#109271] / [fdo#111767]) +1 similar issue
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-snb6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-tglu: NOTRUN -> [SKIP][136] ([fdo#109274])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic:
- shard-apl: [PASS][137] -> [DMESG-WARN][138] ([i915#180] / [i915#8585]) +17 similar issues
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl1/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-apl3/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][139] ([fdo#109274] / [i915#5354]) +1 similar issue
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-rkl: NOTRUN -> [SKIP][140] ([fdo#111767] / [fdo#111825])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_display_modes@extended-mode-basic:
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#8827])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#3804])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#3555]) +3 similar issues
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-7/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][144] ([fdo#109274])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-5/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3637]) +1 similar issue
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-7/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
- shard-glk: [PASS][146] -> [FAIL][147] ([i915#79])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-glk5/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#8381])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-4/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible@a-edp1:
- shard-mtlp: [PASS][149] -> [DMESG-WARN][150] ([i915#1982])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-2/igt@kms_flip@modeset-vs-vblank-race-interruptible@a-edp1.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@kms_flip@modeset-vs-vblank-race-interruptible@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#2672])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#8810])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#2672])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#2587] / [i915#2672])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
- shard-dg2: [PASS][155] -> [FAIL][156] ([i915#6880]) +2 similar issues
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#8708]) +3 similar issues
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][158] ([fdo#109280]) +9 similar issues
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-dg2: [PASS][159] -> [FAIL][160] ([fdo#103375]) +1 similar issue
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][161] ([fdo#110189]) +5 similar issues
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#3023]) +10 similar issues
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#8708]) +9 similar issues
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][164] ([fdo#111825] / [i915#1825]) +14 similar issues
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#3458]) +3 similar issues
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#1825]) +12 similar issues
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#8228]) +1 similar issue
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@kms_hdr@invalid-metadata-sizes.html
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#8228])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-7/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#4816])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-11/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#4816])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#6301])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-5/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3546]) +1 similar issue
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#5176]) +3 similar issues
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#5176]) +3 similar issues
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#5176]) +5 similar issues
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#5176]) +1 similar issue
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1:
- shard-snb: NOTRUN -> [SKIP][177] ([fdo#109271]) +304 similar issues
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-snb2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#5235]) +3 similar issues
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#5235]) +3 similar issues
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#5235]) +15 similar issues
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#5235]) +3 similar issues
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#6524] / [i915#6805])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-3/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#6524])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#658])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#658])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@dpms:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#1072]) +2 similar issues
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@kms_psr@dpms.html
* igt@kms_psr@sprite_blt:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#1072]) +3 similar issues
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-8/igt@kms_psr@sprite_blt.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#5289])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#4235])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-4/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#8623])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@pipe-c-accuracy-idle:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#4070] / [i915#6768]) +1 similar issue
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-4/igt@kms_vblank@pipe-c-accuracy-idle.html
* igt@kms_vblank@pipe-d-query-idle:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#4070] / [i915#533] / [i915#6768]) +2 similar issues
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@kms_vblank@pipe-d-query-idle.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [PASS][193] -> [FAIL][194] ([i915#4349])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-7/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][195] ([i915#4349]) +3 similar issues
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@rc6-suspend:
- shard-snb: NOTRUN -> [DMESG-WARN][196] ([i915#8841]) +6 similar issues
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-snb2/igt@perf_pmu@rc6-suspend.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][197] ([fdo#109295] / [i915#3708])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@prime_vgem@fence-flip-hang.html
* igt@sysfs_heartbeat_interval@nopreempt@vcs0:
- shard-mtlp: [PASS][198] -> [FAIL][199] ([i915#6015]) +2 similar issues
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-1/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
* igt@sysfs_heartbeat_interval@precise@vecs0:
- shard-mtlp: [PASS][200] -> [FAIL][201] ([i915#8332])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-1/igt@sysfs_heartbeat_interval@precise@vecs0.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-2/igt@sysfs_heartbeat_interval@precise@vecs0.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: NOTRUN -> [SKIP][202] ([fdo#109307])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-4/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_mmap@mmap-bo:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#2575]) +4 similar issues
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-1/igt@v3d/v3d_mmap@mmap-bo.html
* igt@v3d/v3d_submit_csd@single-out-sync:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#2575]) +3 similar issues
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-11/igt@v3d/v3d_submit_csd@single-out-sync.html
* igt@v3d/v3d_wait_bo@used-bo-1ns:
- shard-rkl: NOTRUN -> [SKIP][205] ([fdo#109315]) +4 similar issues
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@v3d/v3d_wait_bo@used-bo-1ns.html
* igt@vc4/vc4_create_bo@create-bo-zeroed:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#7711]) +1 similar issue
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-7/igt@vc4/vc4_create_bo@create-bo-zeroed.html
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#7711]) +4 similar issues
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@vc4/vc4_create_bo@create-bo-zeroed.html
* igt@vc4/vc4_perfmon@create-two-perfmon:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#2575])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-10/igt@vc4/vc4_perfmon@create-two-perfmon.html
* igt@vc4/vc4_purgeable_bo@mark-purgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#7711]) +4 similar issues
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-2/igt@vc4/vc4_purgeable_bo@mark-purgeable-twice.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-mtlp: [FAIL][210] ([i915#6121] / [i915#7916]) -> [PASS][211]
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-8/igt@gem_ctx_exec@basic-nohangcheck.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-7/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_isolation@preservation-s3@ccs2:
- shard-dg2: [FAIL][212] ([fdo#103375]) -> [PASS][213] +3 similar issues
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-12/igt@gem_ctx_isolation@preservation-s3@ccs2.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-2/igt@gem_ctx_isolation@preservation-s3@ccs2.html
* igt@gem_ctx_persistence@legacy-engines-hang@bsd1:
- shard-mtlp: [FAIL][214] ([i915#2410]) -> [PASS][215]
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-6/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-4/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html
* igt@gem_eio@hibernate:
- {shard-dg1}: [ABORT][216] ([i915#4391] / [i915#7975] / [i915#8213]) -> [PASS][217]
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg1-14/igt@gem_eio@hibernate.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg1-16/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-dg2: [FAIL][218] ([i915#5784]) -> [PASS][219]
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-7/igt@gem_eio@reset-stress.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-2/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@full-pulse:
- shard-dg2: [FAIL][220] ([i915#6032]) -> [PASS][221]
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-10/igt@gem_exec_balancer@full-pulse.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-10/igt@gem_exec_balancer@full-pulse.html
* igt@gem_exec_fair@basic-deadline:
- shard-glk: [FAIL][222] ([i915#2846]) -> [PASS][223]
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-glk6/igt@gem_exec_fair@basic-deadline.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-glk2/igt@gem_exec_fair@basic-deadline.html
* igt@i915_hangman@detector@vcs0:
- shard-mtlp: [FAIL][224] ([i915#8456]) -> [PASS][225] +2 similar issues
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-6/igt@i915_hangman@detector@vcs0.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@i915_hangman@detector@vcs0.html
* igt@i915_hangman@gt-engine-hang@vcs0:
- shard-mtlp: [FAIL][226] ([i915#7069]) -> [PASS][227]
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-6/igt@i915_hangman@gt-engine-hang@vcs0.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-1/igt@i915_hangman@gt-engine-hang@vcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][228] ([i915#8489] / [i915#8668]) -> [PASS][229]
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][230] ([i915#4281]) -> [PASS][231]
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-6/igt@i915_pm_dc@dc9-dpms.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- {shard-dg1}: [FAIL][232] ([i915#3591]) -> [PASS][233]
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- {shard-dg1}: [FAIL][234] ([i915#7691]) -> [PASS][235]
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg1-15/igt@i915_pm_rpm@basic-pci-d3-state.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg1-12/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][236] ([i915#1397]) -> [PASS][237]
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-2/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [SKIP][238] ([i915#1397]) -> [PASS][239] +1 similar issue
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-12/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-5/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@i915_pm_rpm@sysfs-read:
- shard-tglu: [FAIL][240] ([i915#7940]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-2/igt@i915_pm_rpm@sysfs-read.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-2/igt@i915_pm_rpm@sysfs-read.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1:
- shard-glk: [FAIL][242] ([i915#2521]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: [FAIL][244] ([i915#3743]) -> [PASS][245] +1 similar issue
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [FAIL][246] ([i915#2346]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][248] ([i915#79]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@flip-vs-expired-vblank@b-dp1:
- shard-apl: [FAIL][250] ([i915#79]) -> [PASS][251]
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl3/igt@kms_flip@flip-vs-expired-vblank@b-dp1.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-apl2/igt@kms_flip@flip-vs-expired-vblank@b-dp1.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp1:
- shard-apl: [FAIL][252] ([i915#2122]) -> [PASS][253]
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp1.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-apl4/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp1.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-dg2: [FAIL][254] ([i915#6880]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-rkl: [ABORT][256] ([i915#8311]) -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-1/igt@kms_rotation_crc@primary-rotation-90.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-rkl: [ABORT][258] ([i915#7461]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@sysfs_heartbeat_interval@mixed@ccs0:
- shard-mtlp: [ABORT][260] ([i915#8552]) -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-4/igt@sysfs_heartbeat_interval@mixed@ccs0.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@ccs0.html
* igt@sysfs_heartbeat_interval@mixed@vecs0:
- shard-mtlp: [FAIL][262] ([i915#1731]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-4/igt@sysfs_heartbeat_interval@mixed@vecs0.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@vecs0.html
* igt@sysfs_timeslice_duration@timeout@vecs0:
- shard-mtlp: [TIMEOUT][264] ([i915#6950]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-7/igt@sysfs_timeslice_duration@timeout@vecs0.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-4/igt@sysfs_timeslice_duration@timeout@vecs0.html
* igt@vgem_slow@nohang:
- shard-snb: [ABORT][266] ([i915#8852]) -> [PASS][267]
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-snb4/igt@vgem_slow@nohang.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-snb6/igt@vgem_slow@nohang.html
#### Warnings ####
* igt@gem_exec_whisper@basic-contexts-priority-all:
- shard-mtlp: [ABORT][268] ([i915#8131]) -> [TIMEOUT][269] ([i915#7392])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-priority-all.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-priority-all.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [DMESG-WARN][270] ([i915#4936] / [i915#5493]) -> [TIMEOUT][271] ([i915#5493])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-tglu: [WARN][272] ([i915#2681]) -> [FAIL][273] ([i915#2681] / [i915#3591]) +1 similar issue
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu: [FAIL][274] ([i915#7940]) -> [SKIP][275] ([fdo#111644] / [i915#1397])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-4/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_content_protection@content_type_change:
- shard-dg2: [SKIP][276] ([i915#7118]) -> [SKIP][277] ([i915#7118] / [i915#7162])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-10/igt@kms_content_protection@content_type_change.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-11/igt@kms_content_protection@content_type_change.html
* igt@kms_content_protection@mei_interface:
- shard-dg2: [SKIP][278] ([i915#7118] / [i915#7162]) -> [SKIP][279] ([i915#7118])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-12/igt@kms_content_protection@mei_interface.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-5/igt@kms_content_protection@mei_interface.html
- shard-rkl: [SKIP][280] ([fdo#109300]) -> [SKIP][281] ([i915#7118])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-7/igt@kms_content_protection@mei_interface.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@kms_content_protection@mei_interface.html
- shard-tglu: [SKIP][282] ([fdo#109300]) -> [SKIP][283] ([i915#6944] / [i915#7116] / [i915#7118])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-10/igt@kms_content_protection@mei_interface.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-9/igt@kms_content_protection@mei_interface.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][284] ([i915#3955]) -> [SKIP][285] ([fdo#110189] / [i915#3955])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][286] ([fdo#110189] / [i915#3955]) -> [SKIP][287] ([i915#3955])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.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#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[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#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#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#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[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#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[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#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[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#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[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#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892
[i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015
[i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[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#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6950]: https://gitlab.freedesktop.org/drm/intel/issues/6950
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[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#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7916]: https://gitlab.freedesktop.org/drm/intel/issues/7916
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8311]: https://gitlab.freedesktop.org/drm/intel/issues/8311
[i915#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456
[i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8585]: https://gitlab.freedesktop.org/drm/intel/issues/8585
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8852]: https://gitlab.freedesktop.org/drm/intel/issues/8852
[i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7394 -> IGTPW_9437
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13396: da1bb773ff84001b185e7bec54b32b89dff44f91 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9437: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/index.html
IGT_7394: 3b0c82d7e9f1b8708d351243de7f227153793ede @ 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_9437/index.html
[-- Attachment #2: Type: text/html, Size: 93040 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/gem_*: Migrate allocator start/stop to fixtures (rev4)
2023-07-20 7:29 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/gem_*: Migrate allocator start/stop to fixtures (rev4) Patchwork
@ 2023-07-20 8:19 ` Zbigniew Kempczyński
2023-07-20 11:06 ` Yedireswarapu, SaiX Nandan
0 siblings, 1 reply; 20+ messages in thread
From: Zbigniew Kempczyński @ 2023-07-20 8:19 UTC (permalink / raw)
To: igt-dev; +Cc: SaiX Nandan Yedireswarapu
On Thu, Jul 20, 2023 at 07:29:00AM +0000, Patchwork wrote:
> Patch Details
>
> Series: tests/gem_*: Migrate allocator start/stop to fixtures (rev4)
> URL: https://patchwork.freedesktop.org/series/120968/
> State: failure
> Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/index.html
>
> CI Bug Log - changes from CI_DRM_13396_full -> IGTPW_9437_full
>
> Summary
>
> FAILURE
>
> Serious unknown changes coming with IGTPW_9437_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_9437_full, please notify your bug team 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_9437/index.html
>
> Participating hosts (10 -> 9)
>
> Missing (1): pig-kbl-iris
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> IGTPW_9437_full:
>
> IGT changes
>
> Possible regressions
>
> * igt@vgem_basic@dmabuf-fence:
> * shard-mtlp: PASS -> DMESG-WARN
Unrelated to the change and test is passing so I'm going to merge
the change.
--
Zbigniew
>
> Suppressed
>
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
>
> * {igt@i915_pm_freq_api@freq-suspend@gt0}:
> * shard-dg2: PASS -> INCOMPLETE
>
> New tests
>
> New tests have been introduced between CI_DRM_13396_full and
> IGTPW_9437_full:
>
> New IGT tests (24)
>
> * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_flip@wf_vblank-ts-check@b-hdmi-a4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_flip@wf_vblank-ts-check@c-hdmi-a4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_flip@wf_vblank-ts-check@d-hdmi-a4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-a-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-b-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-c-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
>
> Known issues
>
> Here are the changes found in IGTPW_9437_full that come from known issues:
>
> IGT changes
>
> Issues hit
>
> * igt@drm_fdinfo@most-busy-check-all@rcs0:
>
> * shard-rkl: PASS -> FAIL (i915#7742) +1 similar issue
> * igt@drm_fdinfo@virtual-busy-all:
>
> * shard-dg2: NOTRUN -> SKIP (i915#8414)
> * igt@drm_fdinfo@virtual-busy-idle-all:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8414)
> * igt@gem_create@create-ext-cpu-access-big:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#6335)
>
> * shard-rkl: NOTRUN -> SKIP (i915#6335)
>
> * igt@gem_ctx_persistence@heartbeat-stop:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8555)
> * igt@gem_ctx_persistence@legacy-engines-mixed:
>
> * shard-snb: NOTRUN -> SKIP (fdo#109271 / i915#1099) +2 similar
> issues
> * igt@gem_eio@unwedge-stress:
>
> * shard-snb: NOTRUN -> FAIL (i915#8898)
> * igt@gem_exec_await@wide-contexts:
>
> * shard-dg2: PASS -> FAIL (i915#5892)
> * igt@gem_exec_balancer@parallel-contexts:
>
> * shard-rkl: NOTRUN -> SKIP (i915#4525)
> * igt@gem_exec_capture@pi@vcs0:
>
> * shard-mtlp: PASS -> FAIL (i915#4475)
> * igt@gem_exec_fair@basic-none@bcs0:
>
> * shard-rkl: NOTRUN -> FAIL (i915#2842) +3 similar issues
> * igt@gem_exec_fair@basic-pace-share@rcs0:
>
> * shard-rkl: PASS -> FAIL (i915#2842) +1 similar issue
>
> * shard-tglu: PASS -> FAIL (i915#2842)
>
> * igt@gem_exec_fair@basic-pace@rcs0:
>
> * shard-glk: PASS -> FAIL (i915#2842)
> * igt@gem_exec_fair@basic-throttle:
>
> * shard-dg2: NOTRUN -> SKIP (i915#3539)
> * igt@gem_exec_fence@submit3:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#4812) +1 similar issue
> * igt@gem_exec_fence@submit67:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4812)
> * igt@gem_exec_flush@basic-wb-pro-default:
>
> * shard-dg2: NOTRUN -> SKIP (i915#3539 / i915#4852) +1 similar
> issue
> * igt@gem_exec_reloc@basic-gtt-wc-noreloc:
>
> * shard-rkl: NOTRUN -> SKIP (i915#3281) +3 similar issues
> * igt@gem_exec_reloc@basic-range:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#3281) +5 similar issues
> * igt@gem_exec_reloc@basic-wc-read:
>
> * shard-apl: PASS -> DMESG-WARN (i915#8585) +17 similar issues
> * igt@gem_exec_reloc@basic-write-wc-noreloc:
>
> * shard-dg2: NOTRUN -> SKIP (i915#3281) +3 similar issues
> * igt@gem_exec_schedule@semaphore-power:
>
> * shard-rkl: NOTRUN -> SKIP (i915#7276)
> * igt@gem_fence_thrash@bo-write-verify-none:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4860)
> * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#4860)
> * igt@gem_lmem_swapping@massive-random:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#4613) +1 similar issue
> * igt@gem_lmem_swapping@random-engines:
>
> * shard-tglu: NOTRUN -> SKIP (i915#4613) +1 similar issue
> * igt@gem_lmem_swapping@verify:
>
> * shard-rkl: NOTRUN -> SKIP (i915#4613) +2 similar issues
> * igt@gem_mmap@basic-small-bo:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#4083) +1 similar issue
> * igt@gem_mmap_gtt@big-bo-tiledy:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#4077) +3 similar issues
> * igt@gem_mmap_gtt@cpuset-big-copy-odd:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4077) +3 similar issues
> * igt@gem_mmap_gtt@fault-concurrent-x:
>
> * shard-snb: PASS -> ABORT (i915#5161)
> * igt@gem_mmap_wc@fault-concurrent:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4083) +1 similar issue
> * igt@gem_partial_pwrite_pread@reads:
>
> * shard-dg2: NOTRUN -> SKIP (i915#3282) +1 similar issue
> * igt@gem_pread@bench:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#3282) +1 similar issue
> * igt@gem_pxp@protected-raw-src-copy-not-readible:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4270)
>
> * shard-rkl: NOTRUN -> SKIP (i915#4270)
>
> * shard-mtlp: NOTRUN -> SKIP (i915#4270)
>
> * igt@gem_pxp@reject-modify-context-protection-off-3:
>
> * shard-tglu: NOTRUN -> SKIP (i915#4270)
> * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8428) +4 similar issues
> * igt@gem_render_tiled_blits@basic:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4079) +2 similar issues
> * igt@gem_set_tiling_vs_pwrite:
>
> * shard-rkl: NOTRUN -> SKIP (i915#3282) +3 similar issues
>
> * shard-mtlp: NOTRUN -> SKIP (i915#4079) +1 similar issue
>
> * igt@gem_userptr_blits@coherency-sync:
>
> * shard-dg2: NOTRUN -> SKIP (i915#3297)
> * igt@gem_userptr_blits@dmabuf-sync:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#3297)
> * igt@gem_userptr_blits@readonly-pwrite-unsync:
>
> * shard-tglu: NOTRUN -> SKIP (i915#3297)
> * igt@gen3_render_tiledy_blits:
>
> * shard-dg2: NOTRUN -> SKIP (fdo#109289) +1 similar issue
>
> * shard-rkl: NOTRUN -> SKIP (fdo#109289)
>
> * igt@gen9_exec_parse@allowed-all:
>
> * shard-apl: PASS -> ABORT (i915#5566)
> * igt@gen9_exec_parse@bb-chained:
>
> * shard-rkl: NOTRUN -> SKIP (i915#2527)
> * igt@gen9_exec_parse@bb-large:
>
> * shard-tglu: NOTRUN -> SKIP (i915#2527 / i915#2856)
> * igt@gen9_exec_parse@cmd-crossing-page:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#2856)
> * igt@i915_hangman@gt-engine-error@vcs0:
>
> * shard-mtlp: PASS -> FAIL (i915#7069)
> * igt@i915_pm_backlight@fade-with-suspend:
>
> * shard-tglu: NOTRUN -> SKIP (i915#7561)
> * igt@i915_pm_rpm@cursor-dpms:
>
> * shard-tglu: PASS -> FAIL (i915#7940) +1 similar issue
> * igt@i915_pm_rpm@dpms-non-lpsp:
>
> * shard-rkl: PASS -> SKIP (i915#1397)
> * igt@i915_pm_rpm@modeset-non-lpsp-stress:
>
> * shard-dg2: PASS -> SKIP (i915#1397)
> * igt@i915_pm_sseu@full-enable:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8437)
> * igt@i915_query@test-query-geometry-subslices:
>
> * shard-rkl: NOTRUN -> SKIP (i915#5723)
> * igt@i915_selftest@live@gt_mocs:
>
> * shard-mtlp: PASS -> DMESG-FAIL (i915#7059)
> * igt@i915_suspend@basic-s3-without-i915:
>
> * shard-rkl: NOTRUN -> FAIL (fdo#103375)
>
> * shard-mtlp: NOTRUN -> SKIP (i915#6645)
>
> * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs:
>
> * shard-rkl: NOTRUN -> SKIP (i915#8502) +3 similar issues
> * igt@kms_async_flips@crc@pipe-b-dp-2:
>
> * shard-dg2: NOTRUN -> FAIL (i915#8247) +3 similar issues
> * igt@kms_async_flips@crc@pipe-b-vga-1:
>
> * shard-snb: NOTRUN -> FAIL (i915#8247) +1 similar issue
> * igt@kms_async_flips@test-cursor:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#6229)
> * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
>
> * shard-tglu: NOTRUN -> SKIP (i915#404)
> * igt@kms_big_fb@4-tiled-32bpp-rotate-180:
>
> * shard-rkl: NOTRUN -> SKIP (i915#5286) +1 similar issue
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
>
> * shard-mtlp: PASS -> FAIL (i915#5138)
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
>
> * shard-tglu: NOTRUN -> SKIP (fdo#111615 / i915#5286)
> * igt@kms_big_fb@linear-8bpp-rotate-270:
>
> * shard-rkl: NOTRUN -> SKIP (fdo#111614 / i915#3638) +1 similar
> issue
>
> * shard-dg2: NOTRUN -> SKIP (fdo#111614)
>
> * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
>
> * shard-tglu: NOTRUN -> SKIP (fdo#111614)
> * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
>
> * shard-mtlp: NOTRUN -> SKIP (fdo#111614)
> * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>
> * shard-mtlp: NOTRUN -> FAIL (i915#3743)
> * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
>
> * shard-dg2: NOTRUN -> SKIP (i915#5190) +4 similar issues
> * igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
>
> * shard-rkl: NOTRUN -> SKIP (fdo#110723) +3 similar issues
> * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
>
> * shard-mtlp: NOTRUN -> SKIP (fdo#111615) +1 similar issue
> * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4538 / i915#5190) +2 similar
> issues
> * igt@kms_big_joiner@2x-modeset:
>
> * shard-rkl: NOTRUN -> SKIP (i915#2705)
>
> * shard-mtlp: NOTRUN -> SKIP (i915#2705)
>
> * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs:
>
> * shard-rkl: NOTRUN -> SKIP (i915#3734 / i915#5354 / i915#6095) +2
> similar issues
> * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#5354 / i915#6095)
> * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_mtl_mc_ccs:
>
> * shard-rkl: NOTRUN -> SKIP (i915#5354 / i915#6095) +6 similar
> issues
> * igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs:
>
> * shard-tglu: NOTRUN -> SKIP (i915#3689 / i915#5354 / i915#6095)
> * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#6095) +10 similar issues
> * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
>
> * shard-dg2: NOTRUN -> SKIP (i915#3689 / i915#3886 / i915#5354) +5
> similar issues
>
> * shard-rkl: NOTRUN -> SKIP (i915#3886 / i915#5354 / i915#6095)
>
> * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
>
> * shard-tglu: NOTRUN -> SKIP (i915#3689 / i915#3886 / i915#5354 /
> i915#6095) +2 similar issues
> * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs:
>
> * shard-dg2: NOTRUN -> SKIP (i915#5354) +11 similar issues
> * igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs:
>
> * shard-tglu: NOTRUN -> SKIP (i915#5354 / i915#6095) +3 similar
> issues
> * igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs:
>
> * shard-dg2: NOTRUN -> SKIP (i915#3689 / i915#5354)
> * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs:
>
> * shard-rkl: NOTRUN -> SKIP (i915#5354) +12 similar issues
> * igt@kms_cdclk@mode-transition@pipe-d-dp-4:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4087 / i915#7213) +3 similar
> issues
> * igt@kms_cdclk@plane-scaling@pipe-c-dp-2:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4087) +3 similar issues
> * igt@kms_chamelium_color@ctm-green-to-red:
>
> * shard-tglu: NOTRUN -> SKIP (fdo#111827)
> * igt@kms_chamelium_color@ctm-max:
>
> * shard-dg2: NOTRUN -> SKIP (fdo#111827)
>
> * shard-rkl: NOTRUN -> SKIP (fdo#111827)
>
> * igt@kms_chamelium_color@ctm-red-to-blue:
>
> * shard-mtlp: NOTRUN -> SKIP (fdo#111827)
> * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
>
> * shard-dg2: NOTRUN -> SKIP (i915#7828) +1 similar issue
> * igt@kms_chamelium_frames@dp-frame-dump:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#7828) +1 similar issue
> * igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
>
> * shard-tglu: NOTRUN -> SKIP (i915#7828) +1 similar issue
> * igt@kms_chamelium_frames@hdmi-crc-multiple:
>
> * shard-rkl: NOTRUN -> SKIP (i915#7828) +2 similar issues
> * igt@kms_color@deep-color:
>
> * shard-rkl: NOTRUN -> SKIP (i915#3555) +1 similar issue
> * igt@kms_content_protection@atomic:
>
> * shard-tglu: NOTRUN -> SKIP (i915#6944 / i915#7116 / i915#7118)
> * igt@kms_content_protection@atomic-dpms:
>
> * shard-rkl: NOTRUN -> SKIP (i915#7118)
> * igt@kms_content_protection@lic@pipe-a-dp-4:
>
> * shard-dg2: NOTRUN -> TIMEOUT (i915#7173)
> * igt@kms_content_protection@type1:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#6944) +1 similar issue
> * igt@kms_cursor_crc@cursor-sliding-32x32:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8814) +1 similar issue
> * igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1:
>
> * shard-apl: PASS -> ABORT (i915#180)
> * igt@kms_cursor_edge_walk@128x128-right-edge@pipe-a-dp-1:
>
> * shard-apl: PASS -> DMESG-WARN (i915#1982 / i915#8585)
> * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
>
> * shard-dg2: NOTRUN -> SKIP (fdo#109274 / fdo#111767 / i915#5354)
> +1 similar issue
>
> * shard-snb: NOTRUN -> SKIP (fdo#109271 / fdo#111767) +1 similar
> issue
>
> * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
>
> * shard-tglu: NOTRUN -> SKIP (fdo#109274)
> * igt@kms_cursor_legacy@cursor-vs-flip-atomic:
>
> * shard-apl: PASS -> DMESG-WARN (i915#180 / i915#8585) +17 similar
> issues
> * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
>
> * shard-dg2: NOTRUN -> SKIP (fdo#109274 / i915#5354) +1 similar
> issue
> * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
>
> * shard-rkl: NOTRUN -> SKIP (fdo#111767 / fdo#111825)
> * igt@kms_display_modes@extended-mode-basic:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8827)
> * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
>
> * shard-rkl: NOTRUN -> SKIP (i915#3804)
> * igt@kms_dither@fb-8bpc-vs-panel-8bpc:
>
> * shard-dg2: NOTRUN -> SKIP (i915#3555) +3 similar issues
> * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
>
> * shard-dg2: NOTRUN -> SKIP (fdo#109274)
> * igt@kms_flip@2x-dpms-vs-vblank-race:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#3637) +1 similar issue
> * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
>
> * shard-glk: PASS -> FAIL (i915#79)
> * igt@kms_flip@flip-vs-fences:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8381)
> * igt@kms_flip@modeset-vs-vblank-race-interruptible@a-edp1:
>
> * shard-mtlp: PASS -> DMESG-WARN (i915#1982)
> * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#2672)
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8810)
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
>
> * shard-rkl: NOTRUN -> SKIP (i915#2672)
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
>
> * shard-tglu: NOTRUN -> SKIP (i915#2587 / i915#2672)
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
>
> * shard-dg2: PASS -> FAIL (i915#6880) +2 similar issues
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8708) +3 similar issues
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
>
> * shard-tglu: NOTRUN -> SKIP (fdo#109280) +9 similar issues
> * igt@kms_frontbuffer_tracking@fbc-suspend:
>
> * shard-dg2: PASS -> FAIL (fdo#103375) +1 similar issue
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
>
> * shard-tglu: NOTRUN -> SKIP (fdo#110189) +5 similar issues
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
>
> * shard-rkl: NOTRUN -> SKIP (i915#3023) +10 similar issues
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
>
> * shard-dg2: NOTRUN -> SKIP (i915#8708) +9 similar issues
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
>
> * shard-rkl: NOTRUN -> SKIP (fdo#111825 / i915#1825) +14 similar
> issues
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu:
>
> * shard-dg2: NOTRUN -> SKIP (i915#3458) +3 similar issues
> * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#1825) +12 similar issues
> * igt@kms_hdr@invalid-metadata-sizes:
>
> * shard-rkl: NOTRUN -> SKIP (i915#3555 / i915#8228) +1 similar
> issue
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8228)
>
> * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4816)
>
> * shard-rkl: NOTRUN -> SKIP (i915#4816)
>
> * igt@kms_panel_fitting@atomic-fastset:
>
> * shard-dg2: NOTRUN -> SKIP (i915#6301)
> * igt@kms_plane_scaling@2x-scaler-multi-pipe:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#3546) +1 similar issue
> * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1:
>
> * shard-tglu: NOTRUN -> SKIP (i915#5176) +3 similar issues
> * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-2:
>
> * shard-dg2: NOTRUN -> SKIP (i915#5176) +3 similar issues
> * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2:
>
> * shard-rkl: NOTRUN -> SKIP (i915#5176) +5 similar issues
> * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#5176) +1 similar issue
> * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1:
>
> * shard-snb: NOTRUN -> SKIP (fdo#109271) +304 similar issues
> * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1:
>
> * shard-tglu: NOTRUN -> SKIP (i915#5235) +3 similar issues
> * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
>
> * shard-rkl: NOTRUN -> SKIP (i915#5235) +3 similar issues
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
>
> * shard-dg2: NOTRUN -> SKIP (i915#5235) +15 similar issues
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#5235) +3 similar issues
> * igt@kms_prime@basic-crc-hybrid:
>
> * shard-dg2: NOTRUN -> SKIP (i915#6524 / i915#6805)
> * igt@kms_prime@basic-modeset-hybrid:
>
> * shard-rkl: NOTRUN -> SKIP (i915#6524)
> * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
>
> * shard-rkl: NOTRUN -> SKIP (i915#658)
>
> * shard-dg2: NOTRUN -> SKIP (i915#658)
>
> * igt@kms_psr@dpms:
>
> * shard-rkl: NOTRUN -> SKIP (i915#1072) +2 similar issues
> * igt@kms_psr@sprite_blt:
>
> * shard-dg2: NOTRUN -> SKIP (i915#1072) +3 similar issues
> * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#5289)
> * igt@kms_rotation_crc@sprite-rotation-270:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#4235)
> * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
>
> * shard-dg2: NOTRUN -> SKIP (i915#8623)
> * igt@kms_vblank@pipe-c-accuracy-idle:
>
> * shard-rkl: NOTRUN -> SKIP (i915#4070 / i915#6768) +1 similar
> issue
> * igt@kms_vblank@pipe-d-query-idle:
>
> * shard-rkl: NOTRUN -> SKIP (i915#4070 / i915#533 / i915#6768) +2
> similar issues
> * igt@perf_pmu@busy-double-start@rcs0:
>
> * shard-mtlp: PASS -> FAIL (i915#4349)
> * igt@perf_pmu@busy-double-start@vecs1:
>
> * shard-dg2: NOTRUN -> FAIL (i915#4349) +3 similar issues
> * igt@perf_pmu@rc6-suspend:
>
> * shard-snb: NOTRUN -> DMESG-WARN (i915#8841) +6 similar issues
> * igt@prime_vgem@fence-flip-hang:
>
> * shard-rkl: NOTRUN -> SKIP (fdo#109295 / i915#3708)
> * igt@sysfs_heartbeat_interval@nopreempt@vcs0:
>
> * shard-mtlp: PASS -> FAIL (i915#6015) +2 similar issues
> * igt@sysfs_heartbeat_interval@precise@vecs0:
>
> * shard-mtlp: PASS -> FAIL (i915#8332)
> * igt@tools_test@sysfs_l3_parity:
>
> * shard-rkl: NOTRUN -> SKIP (fdo#109307)
> * igt@v3d/v3d_mmap@mmap-bo:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#2575) +4 similar issues
> * igt@v3d/v3d_submit_csd@single-out-sync:
>
> * shard-dg2: NOTRUN -> SKIP (i915#2575) +3 similar issues
> * igt@v3d/v3d_wait_bo@used-bo-1ns:
>
> * shard-rkl: NOTRUN -> SKIP (fdo#109315) +4 similar issues
> * igt@vc4/vc4_create_bo@create-bo-zeroed:
>
> * shard-dg2: NOTRUN -> SKIP (i915#7711) +1 similar issue
>
> * shard-rkl: NOTRUN -> SKIP (i915#7711) +4 similar issues
>
> * igt@vc4/vc4_perfmon@create-two-perfmon:
>
> * shard-tglu: NOTRUN -> SKIP (i915#2575)
> * igt@vc4/vc4_purgeable_bo@mark-purgeable-twice:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#7711) +4 similar issues
>
> Possible fixes
>
> * igt@gem_ctx_exec@basic-nohangcheck:
>
> * shard-mtlp: FAIL (i915#6121 / i915#7916) -> PASS
> * igt@gem_ctx_isolation@preservation-s3@ccs2:
>
> * shard-dg2: FAIL (fdo#103375) -> PASS +3 similar issues
> * igt@gem_ctx_persistence@legacy-engines-hang@bsd1:
>
> * shard-mtlp: FAIL (i915#2410) -> PASS
> * igt@gem_eio@hibernate:
>
> * {shard-dg1}: ABORT (i915#4391 / i915#7975 / i915#8213) -> PASS
> * igt@gem_eio@reset-stress:
>
> * shard-dg2: FAIL (i915#5784) -> PASS
> * igt@gem_exec_balancer@full-pulse:
>
> * shard-dg2: FAIL (i915#6032) -> PASS
> * igt@gem_exec_fair@basic-deadline:
>
> * shard-glk: FAIL (i915#2846) -> PASS
> * igt@i915_hangman@detector@vcs0:
>
> * shard-mtlp: FAIL (i915#8456) -> PASS +2 similar issues
> * igt@i915_hangman@gt-engine-hang@vcs0:
>
> * shard-mtlp: FAIL (i915#7069) -> PASS
> * igt@i915_module_load@reload-with-fault-injection:
>
> * shard-mtlp: ABORT (i915#8489 / i915#8668) -> PASS
> * igt@i915_pm_dc@dc9-dpms:
>
> * shard-tglu: SKIP (i915#4281) -> PASS
> * igt@i915_pm_rc6_residency@rc6-idle@rcs0:
>
> * {shard-dg1}: FAIL (i915#3591) -> PASS
> * igt@i915_pm_rpm@basic-pci-d3-state:
>
> * {shard-dg1}: FAIL (i915#7691) -> PASS
> * igt@i915_pm_rpm@modeset-non-lpsp:
>
> * shard-rkl: SKIP (i915#1397) -> PASS
> * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
>
> * shard-dg2: SKIP (i915#1397) -> PASS +1 similar issue
> * igt@i915_pm_rpm@sysfs-read:
>
> * shard-tglu: FAIL (i915#7940) -> PASS
> * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1:
>
> * shard-glk: FAIL (i915#2521) -> PASS
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>
> * shard-mtlp: FAIL (i915#3743) -> PASS +1 similar issue
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>
> * shard-apl: FAIL (i915#2346) -> PASS
> * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
>
> * shard-glk: FAIL (i915#79) -> PASS
> * igt@kms_flip@flip-vs-expired-vblank@b-dp1:
>
> * shard-apl: FAIL (i915#79) -> PASS
> * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp1:
>
> * shard-apl: FAIL (i915#2122) -> PASS
> * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
>
> * shard-dg2: FAIL (i915#6880) -> PASS
> * igt@kms_rotation_crc@primary-rotation-90:
>
> * shard-rkl: ABORT (i915#8311) -> PASS
> * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
>
> * shard-rkl: ABORT (i915#7461) -> PASS
> * igt@sysfs_heartbeat_interval@mixed@ccs0:
>
> * shard-mtlp: ABORT (i915#8552) -> PASS
> * igt@sysfs_heartbeat_interval@mixed@vecs0:
>
> * shard-mtlp: FAIL (i915#1731) -> PASS
> * igt@sysfs_timeslice_duration@timeout@vecs0:
>
> * shard-mtlp: TIMEOUT (i915#6950) -> PASS
> * igt@vgem_slow@nohang:
>
> * shard-snb: ABORT (i915#8852) -> PASS
>
> Warnings
>
> * igt@gem_exec_whisper@basic-contexts-priority-all:
>
> * shard-mtlp: ABORT (i915#8131) -> TIMEOUT (i915#7392)
> * igt@gem_lmem_swapping@smem-oom@lmem0:
>
> * shard-dg2: DMESG-WARN (i915#4936 / i915#5493) -> TIMEOUT
> (i915#5493)
> * igt@i915_pm_rc6_residency@rc6-idle@rcs0:
>
> * shard-tglu: WARN (i915#2681) -> FAIL (i915#2681 / i915#3591) +1
> similar issue
> * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
>
> * shard-tglu: FAIL (i915#7940) -> SKIP (fdo#111644 / i915#1397)
> * igt@kms_content_protection@content_type_change:
>
> * shard-dg2: SKIP (i915#7118) -> SKIP (i915#7118 / i915#7162)
> * igt@kms_content_protection@mei_interface:
>
> * shard-dg2: SKIP (i915#7118 / i915#7162) -> SKIP (i915#7118)
>
> * shard-rkl: SKIP (fdo#109300) -> SKIP (i915#7118)
>
> * shard-tglu: SKIP (fdo#109300) -> SKIP (i915#6944 / i915#7116 /
> i915#7118)
>
> * igt@kms_fbcon_fbt@psr:
>
> * shard-rkl: SKIP (i915#3955) -> SKIP (fdo#110189 / i915#3955)
> * igt@kms_fbcon_fbt@psr-suspend:
>
> * shard-rkl: SKIP (fdo#110189 / i915#3955) -> SKIP (i915#3955)
>
> {name}: This element is suppressed. This means it is ignored when
> computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
> Build changes
>
> * CI: CI-20190529 -> None
> * IGT: IGT_7394 -> IGTPW_9437
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_13396: da1bb773ff84001b185e7bec54b32b89dff44f91 @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_9437: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/index.html
> IGT_7394: 3b0c82d7e9f1b8708d351243de7f227153793ede @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> git://anongit.freedesktop.org/piglit
^ permalink raw reply [flat|nested] 20+ messages in thread* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/gem_*: Migrate allocator start/stop to fixtures (rev4)
2023-07-20 8:19 ` Zbigniew Kempczyński
@ 2023-07-20 11:06 ` Yedireswarapu, SaiX Nandan
0 siblings, 0 replies; 20+ messages in thread
From: Yedireswarapu, SaiX Nandan @ 2023-07-20 11:06 UTC (permalink / raw)
To: Kempczynski, Zbigniew, igt-dev@lists.freedesktop.org
Hi,
Issue re-reported, https://patchwork.freedesktop.org/series/120968/
Thanks,
Y Sai Nandan
-----Original Message-----
From: Kempczynski, Zbigniew <zbigniew.kempczynski@intel.com>
Sent: Thursday, July 20, 2023 1:49 PM
To: igt-dev@lists.freedesktop.org
Cc: Yedireswarapu, SaiX Nandan <saix.nandan.yedireswarapu@intel.com>
Subject: Re: ✗ Fi.CI.IGT: failure for tests/gem_*: Migrate allocator start/stop to fixtures (rev4)
On Thu, Jul 20, 2023 at 07:29:00AM +0000, Patchwork wrote:
> Patch Details
>
> Series: tests/gem_*: Migrate allocator start/stop to fixtures (rev4)
> URL: https://patchwork.freedesktop.org/series/120968/
> State: failure
> Details:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/index.html
>
> CI Bug Log - changes from CI_DRM_13396_full ->
> IGTPW_9437_full
>
> Summary
>
> FAILURE
>
> Serious unknown changes coming with IGTPW_9437_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_9437_full, please notify your bug team 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_9437/index.html
>
> Participating hosts (10 -> 9)
>
> Missing (1): pig-kbl-iris
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> IGTPW_9437_full:
>
> IGT changes
>
> Possible regressions
>
> * igt@vgem_basic@dmabuf-fence:
> * shard-mtlp: PASS -> DMESG-WARN
Unrelated to the change and test is passing so I'm going to merge the change.
--
Zbigniew
>
> Suppressed
>
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
>
> * {igt@i915_pm_freq_api@freq-suspend@gt0}:
> * shard-dg2: PASS -> INCOMPLETE
>
> New tests
>
> New tests have been introduced between CI_DRM_13396_full and
> IGTPW_9437_full:
>
> New IGT tests (24)
>
> * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_flip@wf_vblank-ts-check@b-hdmi-a4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_flip@wf_vblank-ts-check@c-hdmi-a4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_flip@wf_vblank-ts-check@d-hdmi-a4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-a-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-b-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-c-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d-hdmi-a-4:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.0] s
>
> Known issues
>
> Here are the changes found in IGTPW_9437_full that come from known issues:
>
> IGT changes
>
> Issues hit
>
> * igt@drm_fdinfo@most-busy-check-all@rcs0:
>
> * shard-rkl: PASS -> FAIL (i915#7742) +1 similar issue
> * igt@drm_fdinfo@virtual-busy-all:
>
> * shard-dg2: NOTRUN -> SKIP (i915#8414)
> * igt@drm_fdinfo@virtual-busy-idle-all:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8414)
> * igt@gem_create@create-ext-cpu-access-big:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#6335)
>
> * shard-rkl: NOTRUN -> SKIP (i915#6335)
>
> * igt@gem_ctx_persistence@heartbeat-stop:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8555)
> * igt@gem_ctx_persistence@legacy-engines-mixed:
>
> * shard-snb: NOTRUN -> SKIP (fdo#109271 / i915#1099) +2 similar
> issues
> * igt@gem_eio@unwedge-stress:
>
> * shard-snb: NOTRUN -> FAIL (i915#8898)
> * igt@gem_exec_await@wide-contexts:
>
> * shard-dg2: PASS -> FAIL (i915#5892)
> * igt@gem_exec_balancer@parallel-contexts:
>
> * shard-rkl: NOTRUN -> SKIP (i915#4525)
> * igt@gem_exec_capture@pi@vcs0:
>
> * shard-mtlp: PASS -> FAIL (i915#4475)
> * igt@gem_exec_fair@basic-none@bcs0:
>
> * shard-rkl: NOTRUN -> FAIL (i915#2842) +3 similar issues
> * igt@gem_exec_fair@basic-pace-share@rcs0:
>
> * shard-rkl: PASS -> FAIL (i915#2842) +1 similar issue
>
> * shard-tglu: PASS -> FAIL (i915#2842)
>
> * igt@gem_exec_fair@basic-pace@rcs0:
>
> * shard-glk: PASS -> FAIL (i915#2842)
> * igt@gem_exec_fair@basic-throttle:
>
> * shard-dg2: NOTRUN -> SKIP (i915#3539)
> * igt@gem_exec_fence@submit3:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#4812) +1 similar issue
> * igt@gem_exec_fence@submit67:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4812)
> * igt@gem_exec_flush@basic-wb-pro-default:
>
> * shard-dg2: NOTRUN -> SKIP (i915#3539 / i915#4852) +1 similar
> issue
> * igt@gem_exec_reloc@basic-gtt-wc-noreloc:
>
> * shard-rkl: NOTRUN -> SKIP (i915#3281) +3 similar issues
> * igt@gem_exec_reloc@basic-range:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#3281) +5 similar issues
> * igt@gem_exec_reloc@basic-wc-read:
>
> * shard-apl: PASS -> DMESG-WARN (i915#8585) +17 similar issues
> * igt@gem_exec_reloc@basic-write-wc-noreloc:
>
> * shard-dg2: NOTRUN -> SKIP (i915#3281) +3 similar issues
> * igt@gem_exec_schedule@semaphore-power:
>
> * shard-rkl: NOTRUN -> SKIP (i915#7276)
> * igt@gem_fence_thrash@bo-write-verify-none:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4860)
> * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#4860)
> * igt@gem_lmem_swapping@massive-random:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#4613) +1 similar issue
> * igt@gem_lmem_swapping@random-engines:
>
> * shard-tglu: NOTRUN -> SKIP (i915#4613) +1 similar issue
> * igt@gem_lmem_swapping@verify:
>
> * shard-rkl: NOTRUN -> SKIP (i915#4613) +2 similar issues
> * igt@gem_mmap@basic-small-bo:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#4083) +1 similar issue
> * igt@gem_mmap_gtt@big-bo-tiledy:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#4077) +3 similar issues
> * igt@gem_mmap_gtt@cpuset-big-copy-odd:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4077) +3 similar issues
> * igt@gem_mmap_gtt@fault-concurrent-x:
>
> * shard-snb: PASS -> ABORT (i915#5161)
> * igt@gem_mmap_wc@fault-concurrent:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4083) +1 similar issue
> * igt@gem_partial_pwrite_pread@reads:
>
> * shard-dg2: NOTRUN -> SKIP (i915#3282) +1 similar issue
> * igt@gem_pread@bench:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#3282) +1 similar issue
> * igt@gem_pxp@protected-raw-src-copy-not-readible:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4270)
>
> * shard-rkl: NOTRUN -> SKIP (i915#4270)
>
> * shard-mtlp: NOTRUN -> SKIP (i915#4270)
>
> * igt@gem_pxp@reject-modify-context-protection-off-3:
>
> * shard-tglu: NOTRUN -> SKIP (i915#4270)
> * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8428) +4 similar issues
> * igt@gem_render_tiled_blits@basic:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4079) +2 similar issues
> * igt@gem_set_tiling_vs_pwrite:
>
> * shard-rkl: NOTRUN -> SKIP (i915#3282) +3 similar issues
>
> * shard-mtlp: NOTRUN -> SKIP (i915#4079) +1 similar issue
>
> * igt@gem_userptr_blits@coherency-sync:
>
> * shard-dg2: NOTRUN -> SKIP (i915#3297)
> * igt@gem_userptr_blits@dmabuf-sync:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#3297)
> * igt@gem_userptr_blits@readonly-pwrite-unsync:
>
> * shard-tglu: NOTRUN -> SKIP (i915#3297)
> * igt@gen3_render_tiledy_blits:
>
> * shard-dg2: NOTRUN -> SKIP (fdo#109289) +1 similar issue
>
> * shard-rkl: NOTRUN -> SKIP (fdo#109289)
>
> * igt@gen9_exec_parse@allowed-all:
>
> * shard-apl: PASS -> ABORT (i915#5566)
> * igt@gen9_exec_parse@bb-chained:
>
> * shard-rkl: NOTRUN -> SKIP (i915#2527)
> * igt@gen9_exec_parse@bb-large:
>
> * shard-tglu: NOTRUN -> SKIP (i915#2527 / i915#2856)
> * igt@gen9_exec_parse@cmd-crossing-page:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#2856)
> * igt@i915_hangman@gt-engine-error@vcs0:
>
> * shard-mtlp: PASS -> FAIL (i915#7069)
> * igt@i915_pm_backlight@fade-with-suspend:
>
> * shard-tglu: NOTRUN -> SKIP (i915#7561)
> * igt@i915_pm_rpm@cursor-dpms:
>
> * shard-tglu: PASS -> FAIL (i915#7940) +1 similar issue
> * igt@i915_pm_rpm@dpms-non-lpsp:
>
> * shard-rkl: PASS -> SKIP (i915#1397)
> * igt@i915_pm_rpm@modeset-non-lpsp-stress:
>
> * shard-dg2: PASS -> SKIP (i915#1397)
> * igt@i915_pm_sseu@full-enable:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8437)
> * igt@i915_query@test-query-geometry-subslices:
>
> * shard-rkl: NOTRUN -> SKIP (i915#5723)
> * igt@i915_selftest@live@gt_mocs:
>
> * shard-mtlp: PASS -> DMESG-FAIL (i915#7059)
> * igt@i915_suspend@basic-s3-without-i915:
>
> * shard-rkl: NOTRUN -> FAIL (fdo#103375)
>
> * shard-mtlp: NOTRUN -> SKIP (i915#6645)
>
> * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs:
>
> * shard-rkl: NOTRUN -> SKIP (i915#8502) +3 similar issues
> * igt@kms_async_flips@crc@pipe-b-dp-2:
>
> * shard-dg2: NOTRUN -> FAIL (i915#8247) +3 similar issues
> * igt@kms_async_flips@crc@pipe-b-vga-1:
>
> * shard-snb: NOTRUN -> FAIL (i915#8247) +1 similar issue
> * igt@kms_async_flips@test-cursor:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#6229)
> * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
>
> * shard-tglu: NOTRUN -> SKIP (i915#404)
> * igt@kms_big_fb@4-tiled-32bpp-rotate-180:
>
> * shard-rkl: NOTRUN -> SKIP (i915#5286) +1 similar issue
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
>
> * shard-mtlp: PASS -> FAIL (i915#5138)
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
>
> * shard-tglu: NOTRUN -> SKIP (fdo#111615 / i915#5286)
> * igt@kms_big_fb@linear-8bpp-rotate-270:
>
> * shard-rkl: NOTRUN -> SKIP (fdo#111614 / i915#3638) +1 similar
> issue
>
> * shard-dg2: NOTRUN -> SKIP (fdo#111614)
>
> * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
>
> * shard-tglu: NOTRUN -> SKIP (fdo#111614)
> * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
>
> * shard-mtlp: NOTRUN -> SKIP (fdo#111614)
> * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>
> * shard-mtlp: NOTRUN -> FAIL (i915#3743)
> * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
>
> * shard-dg2: NOTRUN -> SKIP (i915#5190) +4 similar issues
> * igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
>
> * shard-rkl: NOTRUN -> SKIP (fdo#110723) +3 similar issues
> * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
>
> * shard-mtlp: NOTRUN -> SKIP (fdo#111615) +1 similar issue
> * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4538 / i915#5190) +2 similar
> issues
> * igt@kms_big_joiner@2x-modeset:
>
> * shard-rkl: NOTRUN -> SKIP (i915#2705)
>
> * shard-mtlp: NOTRUN -> SKIP (i915#2705)
>
> * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs:
>
> * shard-rkl: NOTRUN -> SKIP (i915#3734 / i915#5354 / i915#6095) +2
> similar issues
> * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#5354 / i915#6095)
> * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_mtl_mc_ccs:
>
> * shard-rkl: NOTRUN -> SKIP (i915#5354 / i915#6095) +6 similar
> issues
> * igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs:
>
> * shard-tglu: NOTRUN -> SKIP (i915#3689 / i915#5354 / i915#6095)
> * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#6095) +10 similar issues
> * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
>
> * shard-dg2: NOTRUN -> SKIP (i915#3689 / i915#3886 / i915#5354) +5
> similar issues
>
> * shard-rkl: NOTRUN -> SKIP (i915#3886 / i915#5354 /
> i915#6095)
>
> * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
>
> * shard-tglu: NOTRUN -> SKIP (i915#3689 / i915#3886 / i915#5354 /
> i915#6095) +2 similar issues
> * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs:
>
> * shard-dg2: NOTRUN -> SKIP (i915#5354) +11 similar issues
> * igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs:
>
> * shard-tglu: NOTRUN -> SKIP (i915#5354 / i915#6095) +3 similar
> issues
> * igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs:
>
> * shard-dg2: NOTRUN -> SKIP (i915#3689 / i915#5354)
> * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs:
>
> * shard-rkl: NOTRUN -> SKIP (i915#5354) +12 similar issues
> * igt@kms_cdclk@mode-transition@pipe-d-dp-4:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4087 / i915#7213) +3 similar
> issues
> * igt@kms_cdclk@plane-scaling@pipe-c-dp-2:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4087) +3 similar issues
> * igt@kms_chamelium_color@ctm-green-to-red:
>
> * shard-tglu: NOTRUN -> SKIP (fdo#111827)
> * igt@kms_chamelium_color@ctm-max:
>
> * shard-dg2: NOTRUN -> SKIP (fdo#111827)
>
> * shard-rkl: NOTRUN -> SKIP (fdo#111827)
>
> * igt@kms_chamelium_color@ctm-red-to-blue:
>
> * shard-mtlp: NOTRUN -> SKIP (fdo#111827)
> * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
>
> * shard-dg2: NOTRUN -> SKIP (i915#7828) +1 similar issue
> * igt@kms_chamelium_frames@dp-frame-dump:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#7828) +1 similar issue
> * igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
>
> * shard-tglu: NOTRUN -> SKIP (i915#7828) +1 similar issue
> * igt@kms_chamelium_frames@hdmi-crc-multiple:
>
> * shard-rkl: NOTRUN -> SKIP (i915#7828) +2 similar issues
> * igt@kms_color@deep-color:
>
> * shard-rkl: NOTRUN -> SKIP (i915#3555) +1 similar issue
> * igt@kms_content_protection@atomic:
>
> * shard-tglu: NOTRUN -> SKIP (i915#6944 / i915#7116 / i915#7118)
> * igt@kms_content_protection@atomic-dpms:
>
> * shard-rkl: NOTRUN -> SKIP (i915#7118)
> * igt@kms_content_protection@lic@pipe-a-dp-4:
>
> * shard-dg2: NOTRUN -> TIMEOUT (i915#7173)
> * igt@kms_content_protection@type1:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#6944) +1 similar issue
> * igt@kms_cursor_crc@cursor-sliding-32x32:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8814) +1 similar issue
> * igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1:
>
> * shard-apl: PASS -> ABORT (i915#180)
> * igt@kms_cursor_edge_walk@128x128-right-edge@pipe-a-dp-1:
>
> * shard-apl: PASS -> DMESG-WARN (i915#1982 / i915#8585)
> * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
>
> * shard-dg2: NOTRUN -> SKIP (fdo#109274 / fdo#111767 / i915#5354)
> +1 similar issue
>
> * shard-snb: NOTRUN -> SKIP (fdo#109271 / fdo#111767) +1 similar
> issue
>
> * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
>
> * shard-tglu: NOTRUN -> SKIP (fdo#109274)
> * igt@kms_cursor_legacy@cursor-vs-flip-atomic:
>
> * shard-apl: PASS -> DMESG-WARN (i915#180 / i915#8585) +17 similar
> issues
> * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
>
> * shard-dg2: NOTRUN -> SKIP (fdo#109274 / i915#5354) +1 similar
> issue
> * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
>
> * shard-rkl: NOTRUN -> SKIP (fdo#111767 / fdo#111825)
> * igt@kms_display_modes@extended-mode-basic:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8827)
> * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
>
> * shard-rkl: NOTRUN -> SKIP (i915#3804)
> * igt@kms_dither@fb-8bpc-vs-panel-8bpc:
>
> * shard-dg2: NOTRUN -> SKIP (i915#3555) +3 similar issues
> * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
>
> * shard-dg2: NOTRUN -> SKIP (fdo#109274)
> * igt@kms_flip@2x-dpms-vs-vblank-race:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#3637) +1 similar issue
> * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
>
> * shard-glk: PASS -> FAIL (i915#79)
> * igt@kms_flip@flip-vs-fences:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8381)
> * igt@kms_flip@modeset-vs-vblank-race-interruptible@a-edp1:
>
> * shard-mtlp: PASS -> DMESG-WARN (i915#1982)
> * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#2672)
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8810)
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
>
> * shard-rkl: NOTRUN -> SKIP (i915#2672)
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
>
> * shard-tglu: NOTRUN -> SKIP (i915#2587 / i915#2672)
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
>
> * shard-dg2: PASS -> FAIL (i915#6880) +2 similar issues
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8708) +3 similar issues
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
>
> * shard-tglu: NOTRUN -> SKIP (fdo#109280) +9 similar issues
> * igt@kms_frontbuffer_tracking@fbc-suspend:
>
> * shard-dg2: PASS -> FAIL (fdo#103375) +1 similar issue
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
>
> * shard-tglu: NOTRUN -> SKIP (fdo#110189) +5 similar issues
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
>
> * shard-rkl: NOTRUN -> SKIP (i915#3023) +10 similar issues
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
>
> * shard-dg2: NOTRUN -> SKIP (i915#8708) +9 similar issues
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
>
> * shard-rkl: NOTRUN -> SKIP (fdo#111825 / i915#1825) +14 similar
> issues
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu:
>
> * shard-dg2: NOTRUN -> SKIP (i915#3458) +3 similar issues
> * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#1825) +12 similar issues
> * igt@kms_hdr@invalid-metadata-sizes:
>
> * shard-rkl: NOTRUN -> SKIP (i915#3555 / i915#8228) +1 similar
> issue
>
> * shard-mtlp: NOTRUN -> SKIP (i915#8228)
>
> * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>
> * shard-dg2: NOTRUN -> SKIP (i915#4816)
>
> * shard-rkl: NOTRUN -> SKIP (i915#4816)
>
> * igt@kms_panel_fitting@atomic-fastset:
>
> * shard-dg2: NOTRUN -> SKIP (i915#6301)
> * igt@kms_plane_scaling@2x-scaler-multi-pipe:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#3546) +1 similar issue
> * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1:
>
> * shard-tglu: NOTRUN -> SKIP (i915#5176) +3 similar issues
> * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-2:
>
> * shard-dg2: NOTRUN -> SKIP (i915#5176) +3 similar issues
> * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2:
>
> * shard-rkl: NOTRUN -> SKIP (i915#5176) +5 similar issues
> * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#5176) +1 similar issue
> * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1:
>
> * shard-snb: NOTRUN -> SKIP (fdo#109271) +304 similar issues
> * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1:
>
> * shard-tglu: NOTRUN -> SKIP (i915#5235) +3 similar issues
> * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
>
> * shard-rkl: NOTRUN -> SKIP (i915#5235) +3 similar issues
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
>
> * shard-dg2: NOTRUN -> SKIP (i915#5235) +15 similar issues
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#5235) +3 similar issues
> * igt@kms_prime@basic-crc-hybrid:
>
> * shard-dg2: NOTRUN -> SKIP (i915#6524 / i915#6805)
> * igt@kms_prime@basic-modeset-hybrid:
>
> * shard-rkl: NOTRUN -> SKIP (i915#6524)
> * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
>
> * shard-rkl: NOTRUN -> SKIP (i915#658)
>
> * shard-dg2: NOTRUN -> SKIP (i915#658)
>
> * igt@kms_psr@dpms:
>
> * shard-rkl: NOTRUN -> SKIP (i915#1072) +2 similar issues
> * igt@kms_psr@sprite_blt:
>
> * shard-dg2: NOTRUN -> SKIP (i915#1072) +3 similar issues
> * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#5289)
> * igt@kms_rotation_crc@sprite-rotation-270:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#4235)
> * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
>
> * shard-dg2: NOTRUN -> SKIP (i915#8623)
> * igt@kms_vblank@pipe-c-accuracy-idle:
>
> * shard-rkl: NOTRUN -> SKIP (i915#4070 / i915#6768) +1 similar
> issue
> * igt@kms_vblank@pipe-d-query-idle:
>
> * shard-rkl: NOTRUN -> SKIP (i915#4070 / i915#533 / i915#6768) +2
> similar issues
> * igt@perf_pmu@busy-double-start@rcs0:
>
> * shard-mtlp: PASS -> FAIL (i915#4349)
> * igt@perf_pmu@busy-double-start@vecs1:
>
> * shard-dg2: NOTRUN -> FAIL (i915#4349) +3 similar issues
> * igt@perf_pmu@rc6-suspend:
>
> * shard-snb: NOTRUN -> DMESG-WARN (i915#8841) +6 similar issues
> * igt@prime_vgem@fence-flip-hang:
>
> * shard-rkl: NOTRUN -> SKIP (fdo#109295 / i915#3708)
> * igt@sysfs_heartbeat_interval@nopreempt@vcs0:
>
> * shard-mtlp: PASS -> FAIL (i915#6015) +2 similar issues
> * igt@sysfs_heartbeat_interval@precise@vecs0:
>
> * shard-mtlp: PASS -> FAIL (i915#8332)
> * igt@tools_test@sysfs_l3_parity:
>
> * shard-rkl: NOTRUN -> SKIP (fdo#109307)
> * igt@v3d/v3d_mmap@mmap-bo:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#2575) +4 similar issues
> * igt@v3d/v3d_submit_csd@single-out-sync:
>
> * shard-dg2: NOTRUN -> SKIP (i915#2575) +3 similar issues
> * igt@v3d/v3d_wait_bo@used-bo-1ns:
>
> * shard-rkl: NOTRUN -> SKIP (fdo#109315) +4 similar issues
> * igt@vc4/vc4_create_bo@create-bo-zeroed:
>
> * shard-dg2: NOTRUN -> SKIP (i915#7711) +1 similar issue
>
> * shard-rkl: NOTRUN -> SKIP (i915#7711) +4 similar issues
>
> * igt@vc4/vc4_perfmon@create-two-perfmon:
>
> * shard-tglu: NOTRUN -> SKIP (i915#2575)
> * igt@vc4/vc4_purgeable_bo@mark-purgeable-twice:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#7711) +4 similar issues
>
> Possible fixes
>
> * igt@gem_ctx_exec@basic-nohangcheck:
>
> * shard-mtlp: FAIL (i915#6121 / i915#7916) -> PASS
> * igt@gem_ctx_isolation@preservation-s3@ccs2:
>
> * shard-dg2: FAIL (fdo#103375) -> PASS +3 similar issues
> * igt@gem_ctx_persistence@legacy-engines-hang@bsd1:
>
> * shard-mtlp: FAIL (i915#2410) -> PASS
> * igt@gem_eio@hibernate:
>
> * {shard-dg1}: ABORT (i915#4391 / i915#7975 / i915#8213) -> PASS
> * igt@gem_eio@reset-stress:
>
> * shard-dg2: FAIL (i915#5784) -> PASS
> * igt@gem_exec_balancer@full-pulse:
>
> * shard-dg2: FAIL (i915#6032) -> PASS
> * igt@gem_exec_fair@basic-deadline:
>
> * shard-glk: FAIL (i915#2846) -> PASS
> * igt@i915_hangman@detector@vcs0:
>
> * shard-mtlp: FAIL (i915#8456) -> PASS +2 similar issues
> * igt@i915_hangman@gt-engine-hang@vcs0:
>
> * shard-mtlp: FAIL (i915#7069) -> PASS
> * igt@i915_module_load@reload-with-fault-injection:
>
> * shard-mtlp: ABORT (i915#8489 / i915#8668) -> PASS
> * igt@i915_pm_dc@dc9-dpms:
>
> * shard-tglu: SKIP (i915#4281) -> PASS
> * igt@i915_pm_rc6_residency@rc6-idle@rcs0:
>
> * {shard-dg1}: FAIL (i915#3591) -> PASS
> * igt@i915_pm_rpm@basic-pci-d3-state:
>
> * {shard-dg1}: FAIL (i915#7691) -> PASS
> * igt@i915_pm_rpm@modeset-non-lpsp:
>
> * shard-rkl: SKIP (i915#1397) -> PASS
> * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
>
> * shard-dg2: SKIP (i915#1397) -> PASS +1 similar issue
> * igt@i915_pm_rpm@sysfs-read:
>
> * shard-tglu: FAIL (i915#7940) -> PASS
> * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1:
>
> * shard-glk: FAIL (i915#2521) -> PASS
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>
> * shard-mtlp: FAIL (i915#3743) -> PASS +1 similar issue
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>
> * shard-apl: FAIL (i915#2346) -> PASS
> * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
>
> * shard-glk: FAIL (i915#79) -> PASS
> * igt@kms_flip@flip-vs-expired-vblank@b-dp1:
>
> * shard-apl: FAIL (i915#79) -> PASS
> * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp1:
>
> * shard-apl: FAIL (i915#2122) -> PASS
> * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
>
> * shard-dg2: FAIL (i915#6880) -> PASS
> * igt@kms_rotation_crc@primary-rotation-90:
>
> * shard-rkl: ABORT (i915#8311) -> PASS
> * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
>
> * shard-rkl: ABORT (i915#7461) -> PASS
> * igt@sysfs_heartbeat_interval@mixed@ccs0:
>
> * shard-mtlp: ABORT (i915#8552) -> PASS
> * igt@sysfs_heartbeat_interval@mixed@vecs0:
>
> * shard-mtlp: FAIL (i915#1731) -> PASS
> * igt@sysfs_timeslice_duration@timeout@vecs0:
>
> * shard-mtlp: TIMEOUT (i915#6950) -> PASS
> * igt@vgem_slow@nohang:
>
> * shard-snb: ABORT (i915#8852) -> PASS
>
> Warnings
>
> * igt@gem_exec_whisper@basic-contexts-priority-all:
>
> * shard-mtlp: ABORT (i915#8131) -> TIMEOUT (i915#7392)
> * igt@gem_lmem_swapping@smem-oom@lmem0:
>
> * shard-dg2: DMESG-WARN (i915#4936 / i915#5493) -> TIMEOUT
> (i915#5493)
> * igt@i915_pm_rc6_residency@rc6-idle@rcs0:
>
> * shard-tglu: WARN (i915#2681) -> FAIL (i915#2681 / i915#3591) +1
> similar issue
> * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
>
> * shard-tglu: FAIL (i915#7940) -> SKIP (fdo#111644 / i915#1397)
> * igt@kms_content_protection@content_type_change:
>
> * shard-dg2: SKIP (i915#7118) -> SKIP (i915#7118 / i915#7162)
> * igt@kms_content_protection@mei_interface:
>
> * shard-dg2: SKIP (i915#7118 / i915#7162) -> SKIP
> (i915#7118)
>
> * shard-rkl: SKIP (fdo#109300) -> SKIP (i915#7118)
>
> * shard-tglu: SKIP (fdo#109300) -> SKIP (i915#6944 / i915#7116 /
> i915#7118)
>
> * igt@kms_fbcon_fbt@psr:
>
> * shard-rkl: SKIP (i915#3955) -> SKIP (fdo#110189 / i915#3955)
> * igt@kms_fbcon_fbt@psr-suspend:
>
> * shard-rkl: SKIP (fdo#110189 / i915#3955) -> SKIP
> (i915#3955)
>
> {name}: This element is suppressed. This means it is ignored when
> computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
> Build changes
>
> * CI: CI-20190529 -> None
> * IGT: IGT_7394 -> IGTPW_9437
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_13396: da1bb773ff84001b185e7bec54b32b89dff44f91 @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_9437: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/index.html
> IGT_7394: 3b0c82d7e9f1b8708d351243de7f227153793ede @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> git://anongit.freedesktop.org/piglit
^ permalink raw reply [flat|nested] 20+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/gem_*: Migrate allocator start/stop to fixtures (rev3)
2023-07-19 15:36 [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures Zbigniew Kempczyński
` (10 preceding siblings ...)
2023-07-20 7:29 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/gem_*: Migrate allocator start/stop to fixtures (rev4) Patchwork
@ 2023-07-20 8:25 ` Patchwork
2023-07-20 11:05 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/gem_*: Migrate allocator start/stop to fixtures (rev4) Patchwork
12 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-07-20 8:25 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 76417 bytes --]
== Series Details ==
Series: tests/gem_*: Migrate allocator start/stop to fixtures (rev3)
URL : https://patchwork.freedesktop.org/series/120968/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13396_full -> IGTPW_9435_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): pig-kbl-iris
New tests
---------
New tests have been introduced between CI_DRM_13396_full and IGTPW_9435_full:
### New IGT tests (16) ###
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_9435_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [PASS][1] -> [FAIL][2] ([i915#7742]) +1 similar issue
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#8414])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-10/igt@drm_fdinfo@virtual-busy-all.html
* igt@drm_fdinfo@virtual-busy-idle-all:
- shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8414])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-1/igt@drm_fdinfo@virtual-busy-idle-all.html
* igt@feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#658]) +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-1/igt@feature_discovery@psr1.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#6335])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#6335])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-2/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@engines-hang@vcs0:
- shard-mtlp: [PASS][8] -> [FAIL][9] ([i915#2410])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-2/igt@gem_ctx_persistence@engines-hang@vcs0.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-8/igt@gem_ctx_persistence@engines-hang@vcs0.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8555])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@legacy-engines-mixed:
- shard-snb: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#1099]) +2 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-snb5/igt@gem_ctx_persistence@legacy-engines-mixed.html
* igt@gem_eio@in-flight-contexts-10ms:
- shard-mtlp: [PASS][12] -> [ABORT][13] ([i915#7941])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-8/igt@gem_eio@in-flight-contexts-10ms.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-5/igt@gem_eio@in-flight-contexts-10ms.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][14] ([i915#8898])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-snb5/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#4525])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-7/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@pi@vcs0:
- shard-mtlp: [PASS][16] -> [FAIL][17] ([i915#4475])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-8/igt@gem_exec_capture@pi@vcs0.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][18] -> [FAIL][19] ([i915#2846])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-rkl: NOTRUN -> [FAIL][20] ([i915#2842]) +2 similar issues
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-6/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [PASS][21] -> [FAIL][22] ([i915#2842])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-tglu: [PASS][23] -> [FAIL][24] ([i915#2842])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-glk: [PASS][25] -> [FAIL][26] ([i915#2842])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-glk8/igt@gem_exec_fair@basic-pace@rcs0.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-6/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fence@submit3:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4812]) +1 similar issue
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-8/igt@gem_exec_fence@submit3.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-2/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +1 similar issue
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-3/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#3281]) +3 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-range:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#3281]) +5 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-6/igt@gem_exec_reloc@basic-range.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#3281]) +3 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-10/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#7276])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-11/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg2: NOTRUN -> [ABORT][36] ([i915#7975] / [i915#8213])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-3/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_exec_whisper@basic-contexts-forked-all:
- shard-mtlp: [PASS][37] -> [TIMEOUT][38] ([i915#8628])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-6/igt@gem_exec_whisper@basic-contexts-forked-all.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-6/igt@gem_exec_whisper@basic-contexts-forked-all.html
* igt@gem_exec_whisper@basic-queues-priority-all:
- shard-mtlp: [PASS][39] -> [INCOMPLETE][40] ([i915#8504])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-2/igt@gem_exec_whisper@basic-queues-priority-all.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-1/igt@gem_exec_whisper@basic-queues-priority-all.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4860])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4860])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-5/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_lmem_swapping@massive-random:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4613]) +1 similar issue
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-2/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@random-engines:
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#4613]) +1 similar issue
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-7/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#4613]) +2 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-6/igt@gem_lmem_swapping@verify.html
* igt@gem_mmap@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4083]) +2 similar issues
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-7/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@big-bo-tiledy:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4077]) +3 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-5/igt@gem_mmap_gtt@big-bo-tiledy.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4077]) +3 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-10/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4083]) +1 similar issue
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-8/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3282]) +2 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-7/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_pread@bench:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3282]) +1 similar issue
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-3/igt@gem_pread@bench.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4270])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-8/igt@gem_pxp@protected-raw-src-copy-not-readible.html
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#4270]) +1 similar issue
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-1/igt@gem_pxp@protected-raw-src-copy-not-readible.html
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4270])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-tglu: NOTRUN -> [SKIP][55] ([i915#4270])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-6/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#8428]) +4 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-5/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4079]) +2 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-1/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#3282]) +4 similar issues
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-7/igt@gem_set_tiling_vs_pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4079]) +1 similar issue
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-8/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#3297])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-1/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3297])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-7/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@nohangcheck:
- shard-mtlp: [PASS][62] -> [FAIL][63] ([i915#7916])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-4/igt@gem_userptr_blits@nohangcheck.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-2/igt@gem_userptr_blits@nohangcheck.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#3297])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-2/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_workarounds@suspend-resume-context:
- shard-dg2: [PASS][65] -> [FAIL][66] ([fdo#103375]) +1 similar issue
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-11/igt@gem_workarounds@suspend-resume-context.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-5/igt@gem_workarounds@suspend-resume-context.html
* igt@gen3_render_tiledy_blits:
- shard-dg2: NOTRUN -> [SKIP][67] ([fdo#109289]) +1 similar issue
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-7/igt@gen3_render_tiledy_blits.html
- shard-rkl: NOTRUN -> [SKIP][68] ([fdo#109289])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-2/igt@gen3_render_tiledy_blits.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#2527])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#2527] / [i915#2856])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-6/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#2856])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-7/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_hangman@engine-engine-hang@vcs0:
- shard-mtlp: [PASS][72] -> [FAIL][73] ([i915#7069])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-6/igt@i915_hangman@engine-engine-hang@vcs0.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-1/igt@i915_hangman@engine-engine-hang@vcs0.html
* igt@i915_pm_backlight@fade-with-suspend:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#7561])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-6/igt@i915_pm_backlight@fade-with-suspend.html
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#1937])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-2/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-rkl: [PASS][76] -> [SKIP][77] ([i915#1397]) +2 similar issues
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-6/igt@i915_pm_rpm@dpms-non-lpsp.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_pm_rpm@gem-execbuf@smem0:
- shard-tglu: [PASS][78] -> [FAIL][79] ([i915#7940]) +1 similar issue
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-8/igt@i915_pm_rpm@gem-execbuf@smem0.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-2/igt@i915_pm_rpm@gem-execbuf@smem0.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][80] -> [SKIP][81] ([i915#1397])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp-stress.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_sseu@full-enable:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#8437])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-4/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#5723])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-7/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@gt_mocs:
- shard-mtlp: [PASS][84] -> [DMESG-FAIL][85] ([i915#7059])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-3/igt@i915_selftest@live@gt_mocs.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-1/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@slpc:
- shard-mtlp: [PASS][86] -> [DMESG-WARN][87] ([i915#6367])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-3/igt@i915_selftest@live@slpc.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-1/igt@i915_selftest@live@slpc.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#6645])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-5/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#8502]) +3 similar issues
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][90] ([i915#8247]) +3 similar issues
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-5/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@crc@pipe-b-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][91] ([i915#8247]) +1 similar issue
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-snb1/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#6229])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-5/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#404])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#5286]) +1 similar issue
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][95] ([fdo#111615] / [i915#5286])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][96] ([fdo#111614] / [i915#3638]) +2 similar issues
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html
- shard-dg2: NOTRUN -> [SKIP][97] ([fdo#111614])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-11/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][98] ([fdo#111614])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][99] ([fdo#111614])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-5/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: NOTRUN -> [FAIL][100] ([i915#3743])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#5190]) +4 similar issues
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][102] ([fdo#110723]) +3 similar issues
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][103] ([fdo#111615]) +1 similar issue
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#4538] / [i915#5190]) +2 similar issues
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-12/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_joiner@2x-modeset:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#2705])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-2/igt@kms_big_joiner@2x-modeset.html
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#2705])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-2/igt@kms_big_joiner@2x-modeset.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#3734] / [i915#5354] / [i915#6095]) +2 similar issues
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-1/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#5354] / [i915#6095])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/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-4_tiled_mtl_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#5354] / [i915#6095]) +6 similar issues
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-1/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#3689] / [i915#5354] / [i915#6095])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-7/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#6095]) +9 similar issues
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-3/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#3689] / [i915#3886] / [i915#5354]) +5 similar issues
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-3/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#3886] / [i915#5354] / [i915#6095])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-2/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +2 similar issues
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#5354]) +12 similar issues
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-12/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#5354] / [i915#6095]) +3 similar issues
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-4/igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#3689] / [i915#5354])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-11/igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs.html
* igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#5354]) +12 similar issues
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-1/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-tglu: NOTRUN -> [SKIP][119] ([fdo#111827])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-9/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2: NOTRUN -> [SKIP][120] ([fdo#111827])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-1/igt@kms_chamelium_color@ctm-max.html
- shard-rkl: NOTRUN -> [SKIP][121] ([fdo#111827])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-1/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-mtlp: NOTRUN -> [SKIP][122] ([fdo#111827])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-6/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#7828]) +2 similar issues
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-7/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#7828]) +1 similar issue
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-2/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#7828]) +1 similar issue
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-9/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#7828]) +2 similar issues
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_color@deep-color:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#3555]) +1 similar issue
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-2/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#6944] / [i915#7116] / [i915#7118])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-6/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#7118])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@lic@pipe-a-dp-2:
- shard-dg2: NOTRUN -> [TIMEOUT][130] ([i915#7173])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-12/igt@kms_content_protection@lic@pipe-a-dp-2.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#7118])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#6944]) +1 similar issue
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#3359])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#8814]) +1 similar issue
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][135] ([fdo#109274] / [fdo#111767] / [i915#5354]) +1 similar issue
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-tglu: NOTRUN -> [SKIP][136] ([fdo#109274])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][137] ([fdo#109274] / [i915#5354]) +1 similar issue
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-rkl: NOTRUN -> [SKIP][138] ([fdo#111825])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][139] -> [FAIL][140] ([i915#2346])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_display_modes@extended-mode-basic:
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#8827])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#3804])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#3555]) +3 similar issues
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][144] ([fdo#109274])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-11/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3637]) +1 similar issue
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-2/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-snb: NOTRUN -> [SKIP][146] ([fdo#109271] / [fdo#111767])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-snb5/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1:
- shard-apl: [PASS][147] -> [FAIL][148] ([i915#79])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2:
- shard-dg2: NOTRUN -> [FAIL][149] ([i915#79])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html
* igt@kms_flip@flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#8381])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-3/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#2672])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#8810])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#2672]) +1 similar issue
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#2587] / [i915#2672])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt:
- shard-dg2: [PASS][155] -> [FAIL][156] ([i915#6880]) +3 similar issues
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][157] ([fdo#109280]) +8 similar issues
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][158] ([fdo#110189]) +4 similar issues
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#3023]) +11 similar issues
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#8708]) +2 similar issues
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#8708]) +9 similar issues
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][162] ([fdo#111825] / [i915#1825]) +14 similar issues
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#3458]) +3 similar issues
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#1825]) +12 similar issues
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#8228]) +1 similar issue
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-4/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#8228]) +1 similar issue
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-3/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#4816])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#4070] / [i915#4816])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#6301])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-2/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#3546]) +1 similar issue
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][171] ([i915#8292])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#5176]) +7 similar issues
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#5176]) +5 similar issues
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#5176]) +3 similar issues
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-4/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#5176]) +1 similar issue
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1:
- shard-snb: NOTRUN -> [SKIP][176] ([fdo#109271]) +285 similar issues
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-snb4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#5235]) +15 similar issues
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#5235]) +3 similar issues
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#5235]) +3 similar issues
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#5235]) +3 similar issues
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#6524] / [i915#6805])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-5/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#6524])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-1/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#658])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@dpms:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#1072]) +2 similar issues
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-6/igt@kms_psr@dpms.html
* igt@kms_psr@sprite_blt:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#1072]) +3 similar issues
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-8/igt@kms_psr@sprite_blt.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#5289])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#4235])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-4/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][188] ([i915#5465]) +1 similar issue
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#8623])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@pipe-c-accuracy-idle:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#4070] / [i915#6768]) +1 similar issue
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-2/igt@kms_vblank@pipe-c-accuracy-idle.html
* igt@kms_vblank@pipe-d-query-idle:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#4070] / [i915#533] / [i915#6768]) +2 similar issues
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-4/igt@kms_vblank@pipe-d-query-idle.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [PASS][192] -> [FAIL][193] ([i915#7484])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [PASS][194] -> [FAIL][195] ([i915#4349])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-1/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@rc6-suspend:
- shard-snb: NOTRUN -> [DMESG-WARN][196] ([i915#8841]) +3 similar issues
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-snb1/igt@perf_pmu@rc6-suspend.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][197] ([fdo#109295] / [i915#3708])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-4/igt@prime_vgem@fence-flip-hang.html
* igt@sysfs_heartbeat_interval@nopreempt@vcs0:
- shard-mtlp: [PASS][198] -> [FAIL][199] ([i915#6015]) +1 similar issue
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-5/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
* igt@sysfs_heartbeat_interval@precise@vecs0:
- shard-mtlp: [PASS][200] -> [FAIL][201] ([i915#8332])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-1/igt@sysfs_heartbeat_interval@precise@vecs0.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-5/igt@sysfs_heartbeat_interval@precise@vecs0.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: NOTRUN -> [SKIP][202] ([fdo#109307])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-1/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_mmap@mmap-bo:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#2575]) +4 similar issues
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-5/igt@v3d/v3d_mmap@mmap-bo.html
* igt@v3d/v3d_perfmon@get-values-valid-perfmon:
- shard-rkl: NOTRUN -> [SKIP][204] ([fdo#109315]) +4 similar issues
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-7/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html
* igt@v3d/v3d_submit_csd@single-out-sync:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#2575]) +3 similar issues
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-5/igt@v3d/v3d_submit_csd@single-out-sync.html
* igt@vc4/vc4_create_bo@create-bo-zeroed:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#7711]) +2 similar issues
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-2/igt@vc4/vc4_create_bo@create-bo-zeroed.html
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#7711]) +4 similar issues
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-2/igt@vc4/vc4_create_bo@create-bo-zeroed.html
* igt@vc4/vc4_perfmon@create-two-perfmon:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#2575])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-4/igt@vc4/vc4_perfmon@create-two-perfmon.html
* igt@vc4/vc4_purgeable_bo@mark-purgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#7711]) +4 similar issues
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-4/igt@vc4/vc4_purgeable_bo@mark-purgeable-twice.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-mtlp: [FAIL][210] ([i915#6121] / [i915#7916]) -> [PASS][211]
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-8/igt@gem_ctx_exec@basic-nohangcheck.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-6/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_isolation@preservation-s3@ccs2:
- shard-dg2: [FAIL][212] ([fdo#103375]) -> [PASS][213] +3 similar issues
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-12/igt@gem_ctx_isolation@preservation-s3@ccs2.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-12/igt@gem_ctx_isolation@preservation-s3@ccs2.html
* igt@gem_ctx_persistence@legacy-engines-hang@bsd1:
- shard-mtlp: [FAIL][214] ([i915#2410]) -> [PASS][215]
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-6/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-5/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html
* igt@gem_ctx_persistence@saturated-hostile@vecs0:
- shard-mtlp: [FAIL][216] ([i915#7816]) -> [PASS][217] +2 similar issues
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-1/igt@gem_ctx_persistence@saturated-hostile@vecs0.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-7/igt@gem_ctx_persistence@saturated-hostile@vecs0.html
* igt@gem_eio@hibernate:
- {shard-dg1}: [ABORT][218] ([i915#4391] / [i915#7975] / [i915#8213]) -> [PASS][219]
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg1-14/igt@gem_eio@hibernate.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg1-19/igt@gem_eio@hibernate.html
- shard-dg2: [ABORT][220] ([i915#7975] / [i915#8213]) -> [PASS][221]
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-1/igt@gem_eio@hibernate.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-11/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-dg2: [FAIL][222] ([i915#5784]) -> [PASS][223]
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-7/igt@gem_eio@reset-stress.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-5/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@full-pulse:
- shard-dg2: [FAIL][224] ([i915#6032]) -> [PASS][225]
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-10/igt@gem_exec_balancer@full-pulse.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-8/igt@gem_exec_balancer@full-pulse.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-glk: [FAIL][226] ([i915#2842]) -> [PASS][227]
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-glk2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-glk4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [DMESG-WARN][228] ([i915#4936] / [i915#5493]) -> [PASS][229]
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_hangman@gt-engine-hang@vcs0:
- shard-mtlp: [FAIL][230] ([i915#7069]) -> [PASS][231]
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-6/igt@i915_hangman@gt-engine-hang@vcs0.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-6/igt@i915_hangman@gt-engine-hang@vcs0.html
* igt@i915_module_load@load:
- {shard-dg1}: [SKIP][232] ([i915#6227]) -> [PASS][233]
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg1-15/igt@i915_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg1-18/igt@i915_module_load@load.html
- shard-dg2: [SKIP][234] ([i915#6227]) -> [PASS][235]
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-6/igt@i915_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-3/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][236] ([i915#8489] / [i915#8668]) -> [PASS][237]
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: [WARN][238] ([i915#2681]) -> [PASS][239]
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-fence.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- {shard-dg1}: [FAIL][240] ([i915#3591]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][242] ([i915#1397]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [SKIP][244] ([i915#1397]) -> [PASS][245] +1 similar issue
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-12/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-2/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@i915_pm_rpm@sysfs-read:
- shard-tglu: [FAIL][246] ([i915#7940]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-2/igt@i915_pm_rpm@sysfs-read.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-2/igt@i915_pm_rpm@sysfs-read.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1:
- shard-glk: [FAIL][248] ([i915#2521]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-mtlp: [FAIL][250] ([i915#3743]) -> [PASS][251] +2 similar issues
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][252] ([i915#2346]) -> [PASS][253] +1 similar issue
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][254] ([i915#79]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@flip-vs-expired-vblank@b-dp1:
- shard-apl: [FAIL][256] ([i915#79]) -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl3/igt@kms_flip@flip-vs-expired-vblank@b-dp1.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-apl2/igt@kms_flip@flip-vs-expired-vblank@b-dp1.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp1:
- shard-apl: [FAIL][258] ([i915#2122]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp1.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-apl1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp1.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-dg2: [FAIL][260] ([i915#6880]) -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-rkl: [ABORT][262] ([i915#8311]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-1/igt@kms_rotation_crc@primary-rotation-90.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-2/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-rkl: [ABORT][264] ([i915#7461]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [FAIL][266] ([IGT#2]) -> [PASS][267]
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-6/igt@kms_sysfs_edid_timing.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-12/igt@kms_sysfs_edid_timing.html
* igt@sysfs_timeslice_duration@timeout@vecs0:
- shard-mtlp: [TIMEOUT][268] ([i915#6950]) -> [PASS][269]
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-7/igt@sysfs_timeslice_duration@timeout@vecs0.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-5/igt@sysfs_timeslice_duration@timeout@vecs0.html
* igt@vgem_slow@nohang:
- shard-snb: [ABORT][270] ([i915#8852]) -> [PASS][271]
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-snb4/igt@vgem_slow@nohang.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-snb2/igt@vgem_slow@nohang.html
#### Warnings ####
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu: [FAIL][272] ([i915#7940]) -> [SKIP][273] ([fdo#111644] / [i915#1397])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-4/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-3/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_async_flips@crc@pipe-a-edp-1:
- shard-mtlp: [DMESG-FAIL][274] ([i915#8561]) -> [DMESG-FAIL][275] ([i915#1982] / [i915#8561])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-4/igt@kms_async_flips@crc@pipe-a-edp-1.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-mtlp-2/igt@kms_async_flips@crc@pipe-a-edp-1.html
* igt@kms_content_protection@mei_interface:
- shard-dg2: [SKIP][276] ([i915#7118] / [i915#7162]) -> [SKIP][277] ([i915#7118])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-12/igt@kms_content_protection@mei_interface.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-dg2-2/igt@kms_content_protection@mei_interface.html
- shard-rkl: [SKIP][278] ([fdo#109300]) -> [SKIP][279] ([i915#7118])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-7/igt@kms_content_protection@mei_interface.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-1/igt@kms_content_protection@mei_interface.html
- shard-tglu: [SKIP][280] ([fdo#109300]) -> [SKIP][281] ([i915#6944] / [i915#7116] / [i915#7118])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-10/igt@kms_content_protection@mei_interface.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-tglu-6/igt@kms_content_protection@mei_interface.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][282] ([i915#3955]) -> [SKIP][283] ([fdo#110189] / [i915#3955])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: [SKIP][284] ([fdo#109285]) -> [SKIP][285] ([fdo#109285] / [i915#4098])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[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#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#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#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#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[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#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[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#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015
[i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6950]: https://gitlab.freedesktop.org/drm/intel/issues/6950
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[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#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7816]: https://gitlab.freedesktop.org/drm/intel/issues/7816
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7916]: https://gitlab.freedesktop.org/drm/intel/issues/7916
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8311]: https://gitlab.freedesktop.org/drm/intel/issues/8311
[i915#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8504]: https://gitlab.freedesktop.org/drm/intel/issues/8504
[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#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8852]: https://gitlab.freedesktop.org/drm/intel/issues/8852
[i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7394 -> IGTPW_9435
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13396: da1bb773ff84001b185e7bec54b32b89dff44f91 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9435: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9435/index.html
IGT_7394: 3b0c82d7e9f1b8708d351243de7f227153793ede @ 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_9435/index.html
[-- Attachment #2: Type: text/html, Size: 91093 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* [igt-dev] ✓ Fi.CI.IGT: success for tests/gem_*: Migrate allocator start/stop to fixtures (rev4)
2023-07-19 15:36 [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures Zbigniew Kempczyński
` (11 preceding siblings ...)
2023-07-20 8:25 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/gem_*: Migrate allocator start/stop to fixtures (rev3) Patchwork
@ 2023-07-20 11:05 ` Patchwork
12 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2023-07-20 11:05 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 77825 bytes --]
== Series Details ==
Series: tests/gem_*: Migrate allocator start/stop to fixtures (rev4)
URL : https://patchwork.freedesktop.org/series/120968/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13396_full -> IGTPW_9437_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9437_full:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@i915_pm_freq_api@freq-suspend@gt0}:
- shard-dg2: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-11/igt@i915_pm_freq_api@freq-suspend@gt0.html
New tests
---------
New tests have been introduced between CI_DRM_13396_full and IGTPW_9437_full:
### New IGT tests (24) ###
* igt@kms_flip@wf_vblank-ts-check@a-hdmi-a4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_flip@wf_vblank-ts-check@b-hdmi-a4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_flip@wf_vblank-ts-check@c-hdmi-a4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_flip@wf_vblank-ts-check@d-hdmi-a4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_pipe_crc_basic@nonblocking-crc@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_pipe_crc_basic@nonblocking-crc@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_9437_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [PASS][3] -> [FAIL][4] ([i915#7742]) +1 similar issue
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-2/igt@drm_fdinfo@virtual-busy-all.html
* igt@drm_fdinfo@virtual-busy-idle-all:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-2/igt@drm_fdinfo@virtual-busy-idle-all.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#6335])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#6335])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-4/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8555])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@legacy-engines-mixed:
- shard-snb: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#1099]) +2 similar issues
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-snb2/igt@gem_ctx_persistence@legacy-engines-mixed.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][11] ([i915#8898])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-snb1/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_await@wide-contexts:
- shard-dg2: [PASS][12] -> [FAIL][13] ([i915#5892])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-8/igt@gem_exec_await@wide-contexts.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-1/igt@gem_exec_await@wide-contexts.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#4525])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-4/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@pi@vcs0:
- shard-mtlp: [PASS][15] -> [FAIL][16] ([i915#4475])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-7/igt@gem_exec_capture@pi@vcs0.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: NOTRUN -> [FAIL][17] ([i915#2842]) +3 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [PASS][18] -> [FAIL][19] ([i915#2842]) +1 similar issue
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-tglu: [PASS][20] -> [FAIL][21] ([i915#2842])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-glk: [PASS][22] -> [FAIL][23] ([i915#2842])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-glk8/igt@gem_exec_fair@basic-pace@rcs0.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#3539])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-5/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fence@submit3:
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4812]) +1 similar issue
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-3/igt@gem_exec_fence@submit3.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#4812])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-2/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) +1 similar issue
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-8/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#3281]) +3 similar issues
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-range:
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#3281]) +5 similar issues
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@gem_exec_reloc@basic-range.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-apl: [PASS][30] -> [DMESG-WARN][31] ([i915#8585]) +17 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl4/igt@gem_exec_reloc@basic-wc-read.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-apl3/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +3 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-7/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#7276])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#4860])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4860])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_lmem_swapping@massive-random:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4613]) +1 similar issue
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@random-engines:
- shard-tglu: NOTRUN -> [SKIP][37] ([i915#4613]) +1 similar issue
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-3/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#4613]) +2 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@gem_lmem_swapping@verify.html
* igt@gem_mmap@basic-small-bo:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4083]) +1 similar issue
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-3/igt@gem_mmap@basic-small-bo.html
* igt@gem_mmap_gtt@big-bo-tiledy:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4077]) +3 similar issues
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-3/igt@gem_mmap_gtt@big-bo-tiledy.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4077]) +3 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-snb: [PASS][42] -> [ABORT][43] ([i915#5161])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-x.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-snb1/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4083]) +1 similar issue
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-5/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3282]) +1 similar issue
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-3/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_pread@bench:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3282]) +1 similar issue
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@gem_pread@bench.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4270])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-11/igt@gem_pxp@protected-raw-src-copy-not-readible.html
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#4270])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@gem_pxp@protected-raw-src-copy-not-readible.html
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4270])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-tglu: NOTRUN -> [SKIP][50] ([i915#4270])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-2/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#8428]) +4 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4079]) +2 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-6/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#3282]) +3 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4079]) +1 similar issue
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-3/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3297])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-11/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#3297])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-3/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][57] ([i915#3297])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen3_render_tiledy_blits:
- shard-dg2: NOTRUN -> [SKIP][58] ([fdo#109289]) +1 similar issue
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-3/igt@gen3_render_tiledy_blits.html
- shard-rkl: NOTRUN -> [SKIP][59] ([fdo#109289])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@gen3_render_tiledy_blits.html
* igt@gen9_exec_parse@allowed-all:
- shard-apl: [PASS][60] -> [ABORT][61] ([i915#5566])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl2/igt@gen9_exec_parse@allowed-all.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-apl6/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#2527])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu: NOTRUN -> [SKIP][63] ([i915#2527] / [i915#2856])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-9/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#2856])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-2/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_hangman@gt-engine-error@vcs0:
- shard-mtlp: [PASS][65] -> [FAIL][66] ([i915#7069])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-5/igt@i915_hangman@gt-engine-error@vcs0.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@i915_hangman@gt-engine-error@vcs0.html
* igt@i915_pm_backlight@fade-with-suspend:
- shard-tglu: NOTRUN -> [SKIP][67] ([i915#7561])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-8/igt@i915_pm_backlight@fade-with-suspend.html
* igt@i915_pm_rpm@cursor-dpms:
- shard-tglu: [PASS][68] -> [FAIL][69] ([i915#7940]) +1 similar issue
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-9/igt@i915_pm_rpm@cursor-dpms.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-6/igt@i915_pm_rpm@cursor-dpms.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-rkl: [PASS][70] -> [SKIP][71] ([i915#1397])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-6/igt@i915_pm_rpm@dpms-non-lpsp.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][72] -> [SKIP][73] ([i915#1397])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-11/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@i915_pm_sseu@full-enable:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8437])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#5723])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@gt_mocs:
- shard-mtlp: [PASS][76] -> [DMESG-FAIL][77] ([i915#7059])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-3/igt@i915_selftest@live@gt_mocs.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@i915_selftest@live@gt_mocs.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: NOTRUN -> [FAIL][78] ([fdo#103375])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#6645])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-3/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#8502]) +3 similar issues
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-b-dp-2:
- shard-dg2: NOTRUN -> [FAIL][81] ([i915#8247]) +3 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-12/igt@kms_async_flips@crc@pipe-b-dp-2.html
* igt@kms_async_flips@crc@pipe-b-vga-1:
- shard-snb: NOTRUN -> [FAIL][82] ([i915#8247]) +1 similar issue
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-snb6/igt@kms_async_flips@crc@pipe-b-vga-1.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#6229])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-1/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#404])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#5286]) +1 similar issue
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: [PASS][86] -> [FAIL][87] ([i915#5138])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][88] ([fdo#111615] / [i915#5286])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][89] ([fdo#111614] / [i915#3638]) +1 similar issue
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
- shard-dg2: NOTRUN -> [SKIP][90] ([fdo#111614])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][91] ([fdo#111614])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][92] ([fdo#111614])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: NOTRUN -> [FAIL][93] ([i915#3743])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#5190]) +4 similar issues
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][95] ([fdo#110723]) +3 similar issues
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][96] ([fdo#111615]) +1 similar issue
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#4538] / [i915#5190]) +2 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_joiner@2x-modeset:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#2705])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-4/igt@kms_big_joiner@2x-modeset.html
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#2705])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-2/igt@kms_big_joiner@2x-modeset.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#3734] / [i915#5354] / [i915#6095]) +2 similar issues
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#5354] / [i915#6095])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_mtl_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#5354] / [i915#6095]) +6 similar issues
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#3689] / [i915#5354] / [i915#6095])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-6/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#6095]) +10 similar issues
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-8/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#3689] / [i915#3886] / [i915#5354]) +5 similar issues
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-1/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#3886] / [i915#5354] / [i915#6095])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +2 similar issues
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-2/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#5354]) +11 similar issues
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-10/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#5354] / [i915#6095]) +3 similar issues
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-2/igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#3689] / [i915#5354])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-12/igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs.html
* igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#5354]) +12 similar issues
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#4087] / [i915#7213]) +3 similar issues
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-c-dp-2:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#4087]) +3 similar issues
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-12/igt@kms_cdclk@plane-scaling@pipe-c-dp-2.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-tglu: NOTRUN -> [SKIP][114] ([fdo#111827])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-5/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2: NOTRUN -> [SKIP][115] ([fdo#111827])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-2/igt@kms_chamelium_color@ctm-max.html
- shard-rkl: NOTRUN -> [SKIP][116] ([fdo#111827])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-2/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-mtlp: NOTRUN -> [SKIP][117] ([fdo#111827])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-4/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#7828]) +1 similar issue
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-5/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#7828]) +1 similar issue
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-4/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#7828]) +1 similar issue
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-7/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#7828]) +2 similar issues
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-4/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_color@deep-color:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#3555]) +1 similar issue
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#6944] / [i915#7116] / [i915#7118])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-5/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#7118])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@lic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][125] ([i915#7173])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html
* igt@kms_content_protection@type1:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#6944]) +1 similar issue
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#8814]) +1 similar issue
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1:
- shard-apl: [PASS][128] -> [ABORT][129] ([i915#180])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl6/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-apl6/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html
* igt@kms_cursor_edge_walk@128x128-right-edge@pipe-a-dp-1:
- shard-apl: [PASS][130] -> [DMESG-WARN][131] ([i915#1982] / [i915#8585])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl3/igt@kms_cursor_edge_walk@128x128-right-edge@pipe-a-dp-1.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-apl3/igt@kms_cursor_edge_walk@128x128-right-edge@pipe-a-dp-1.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][132] ([fdo#109274] / [fdo#111767] / [i915#5354]) +1 similar issue
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-10/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
- shard-snb: NOTRUN -> [SKIP][133] ([fdo#109271] / [fdo#111767]) +1 similar issue
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-snb6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-tglu: NOTRUN -> [SKIP][134] ([fdo#109274])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic:
- shard-apl: [PASS][135] -> [DMESG-WARN][136] ([i915#180] / [i915#8585]) +17 similar issues
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl1/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-apl3/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][137] ([fdo#109274] / [i915#5354]) +1 similar issue
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-rkl: NOTRUN -> [SKIP][138] ([fdo#111767] / [fdo#111825])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_display_modes@extended-mode-basic:
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#8827])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#3804])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#3555]) +3 similar issues
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-7/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][142] ([fdo#109274])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-5/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#3637]) +1 similar issue
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-7/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
- shard-glk: [PASS][144] -> [FAIL][145] ([i915#79])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-glk5/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#8381])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-4/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible@a-edp1:
- shard-mtlp: [PASS][147] -> [DMESG-WARN][148] ([i915#1982])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-2/igt@kms_flip@modeset-vs-vblank-race-interruptible@a-edp1.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@kms_flip@modeset-vs-vblank-race-interruptible@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#2672])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#8810])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#2672])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#2587] / [i915#2672])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
- shard-dg2: [PASS][153] -> [FAIL][154] ([i915#6880]) +2 similar issues
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#8708]) +3 similar issues
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][156] ([fdo#109280]) +9 similar issues
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-dg2: [PASS][157] -> [FAIL][158] ([fdo#103375]) +1 similar issue
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][159] ([fdo#110189]) +5 similar issues
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#3023]) +10 similar issues
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#8708]) +9 similar issues
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][162] ([fdo#111825] / [i915#1825]) +14 similar issues
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#3458]) +3 similar issues
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#1825]) +12 similar issues
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#8228]) +1 similar issue
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@kms_hdr@invalid-metadata-sizes.html
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#8228])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-7/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#4816])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-11/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#4816])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#6301])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-5/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#3546]) +1 similar issue
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#5176]) +3 similar issues
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#5176]) +3 similar issues
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#5176]) +5 similar issues
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#5176]) +1 similar issue
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1:
- shard-snb: NOTRUN -> [SKIP][175] ([fdo#109271]) +304 similar issues
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-snb2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#5235]) +3 similar issues
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#5235]) +3 similar issues
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#5235]) +15 similar issues
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#5235]) +3 similar issues
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#6524] / [i915#6805])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-3/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#6524])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#658])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#658])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@dpms:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#1072]) +2 similar issues
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@kms_psr@dpms.html
* igt@kms_psr@sprite_blt:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#1072]) +3 similar issues
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-8/igt@kms_psr@sprite_blt.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#5289])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#4235])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-4/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#8623])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@pipe-c-accuracy-idle:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#4070] / [i915#6768]) +1 similar issue
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-4/igt@kms_vblank@pipe-c-accuracy-idle.html
* igt@kms_vblank@pipe-d-query-idle:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#4070] / [i915#533] / [i915#6768]) +2 similar issues
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@kms_vblank@pipe-d-query-idle.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [PASS][191] -> [FAIL][192] ([i915#4349])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-7/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][193] ([i915#4349]) +3 similar issues
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@rc6-suspend:
- shard-snb: NOTRUN -> [DMESG-WARN][194] ([i915#8841]) +6 similar issues
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-snb2/igt@perf_pmu@rc6-suspend.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][195] ([fdo#109295] / [i915#3708])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-7/igt@prime_vgem@fence-flip-hang.html
* igt@sysfs_heartbeat_interval@nopreempt@vcs0:
- shard-mtlp: [PASS][196] -> [FAIL][197] ([i915#6015]) +2 similar issues
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-1/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
* igt@sysfs_heartbeat_interval@precise@vecs0:
- shard-mtlp: [PASS][198] -> [FAIL][199] ([i915#8332])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-1/igt@sysfs_heartbeat_interval@precise@vecs0.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-2/igt@sysfs_heartbeat_interval@precise@vecs0.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: NOTRUN -> [SKIP][200] ([fdo#109307])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-4/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_mmap@mmap-bo:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#2575]) +4 similar issues
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-1/igt@v3d/v3d_mmap@mmap-bo.html
* igt@v3d/v3d_submit_csd@single-out-sync:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#2575]) +3 similar issues
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-11/igt@v3d/v3d_submit_csd@single-out-sync.html
* igt@v3d/v3d_wait_bo@used-bo-1ns:
- shard-rkl: NOTRUN -> [SKIP][203] ([fdo#109315]) +4 similar issues
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@v3d/v3d_wait_bo@used-bo-1ns.html
* igt@vc4/vc4_create_bo@create-bo-zeroed:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#7711]) +1 similar issue
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-7/igt@vc4/vc4_create_bo@create-bo-zeroed.html
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#7711]) +4 similar issues
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@vc4/vc4_create_bo@create-bo-zeroed.html
* igt@vc4/vc4_perfmon@create-two-perfmon:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#2575])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-10/igt@vc4/vc4_perfmon@create-two-perfmon.html
* igt@vc4/vc4_purgeable_bo@mark-purgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#7711]) +4 similar issues
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-2/igt@vc4/vc4_purgeable_bo@mark-purgeable-twice.html
* igt@vgem_basic@dmabuf-fence:
- shard-mtlp: [PASS][208] -> [DMESG-WARN][209] ([i915#5954])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-4/igt@vgem_basic@dmabuf-fence.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-1/igt@vgem_basic@dmabuf-fence.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-mtlp: [FAIL][210] ([i915#6121] / [i915#7916]) -> [PASS][211]
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-8/igt@gem_ctx_exec@basic-nohangcheck.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-7/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_isolation@preservation-s3@ccs2:
- shard-dg2: [FAIL][212] ([fdo#103375]) -> [PASS][213] +3 similar issues
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-12/igt@gem_ctx_isolation@preservation-s3@ccs2.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-2/igt@gem_ctx_isolation@preservation-s3@ccs2.html
* igt@gem_ctx_persistence@legacy-engines-hang@bsd1:
- shard-mtlp: [FAIL][214] ([i915#2410]) -> [PASS][215]
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-6/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-4/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html
* igt@gem_eio@hibernate:
- {shard-dg1}: [ABORT][216] ([i915#4391] / [i915#7975] / [i915#8213]) -> [PASS][217]
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg1-14/igt@gem_eio@hibernate.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg1-16/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-dg2: [FAIL][218] ([i915#5784]) -> [PASS][219]
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-7/igt@gem_eio@reset-stress.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-2/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@full-pulse:
- shard-dg2: [FAIL][220] ([i915#6032]) -> [PASS][221]
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-10/igt@gem_exec_balancer@full-pulse.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-10/igt@gem_exec_balancer@full-pulse.html
* igt@gem_exec_fair@basic-deadline:
- shard-glk: [FAIL][222] ([i915#2846]) -> [PASS][223]
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-glk6/igt@gem_exec_fair@basic-deadline.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-glk2/igt@gem_exec_fair@basic-deadline.html
* igt@i915_hangman@detector@vcs0:
- shard-mtlp: [FAIL][224] ([i915#8456]) -> [PASS][225] +2 similar issues
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-6/igt@i915_hangman@detector@vcs0.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@i915_hangman@detector@vcs0.html
* igt@i915_hangman@gt-engine-hang@vcs0:
- shard-mtlp: [FAIL][226] ([i915#7069]) -> [PASS][227]
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-6/igt@i915_hangman@gt-engine-hang@vcs0.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-1/igt@i915_hangman@gt-engine-hang@vcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][228] ([i915#8489] / [i915#8668]) -> [PASS][229]
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][230] ([i915#4281]) -> [PASS][231]
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-6/igt@i915_pm_dc@dc9-dpms.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- {shard-dg1}: [FAIL][232] ([i915#3591]) -> [PASS][233]
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- {shard-dg1}: [FAIL][234] ([i915#7691]) -> [PASS][235]
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg1-15/igt@i915_pm_rpm@basic-pci-d3-state.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg1-12/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][236] ([i915#1397]) -> [PASS][237]
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-2/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [SKIP][238] ([i915#1397]) -> [PASS][239] +1 similar issue
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-12/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-5/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@i915_pm_rpm@sysfs-read:
- shard-tglu: [FAIL][240] ([i915#7940]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-2/igt@i915_pm_rpm@sysfs-read.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-2/igt@i915_pm_rpm@sysfs-read.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1:
- shard-glk: [FAIL][242] ([i915#2521]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: [FAIL][244] ([i915#3743]) -> [PASS][245] +1 similar issue
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [FAIL][246] ([i915#2346]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][248] ([i915#79]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@flip-vs-expired-vblank@b-dp1:
- shard-apl: [FAIL][250] ([i915#79]) -> [PASS][251]
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl3/igt@kms_flip@flip-vs-expired-vblank@b-dp1.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-apl2/igt@kms_flip@flip-vs-expired-vblank@b-dp1.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp1:
- shard-apl: [FAIL][252] ([i915#2122]) -> [PASS][253]
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-apl1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp1.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-apl4/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp1.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-dg2: [FAIL][254] ([i915#6880]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-rkl: [ABORT][256] ([i915#8311]) -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-1/igt@kms_rotation_crc@primary-rotation-90.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-6/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-rkl: [ABORT][258] ([i915#7461]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@sysfs_heartbeat_interval@mixed@ccs0:
- shard-mtlp: [ABORT][260] ([i915#8552]) -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-4/igt@sysfs_heartbeat_interval@mixed@ccs0.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@ccs0.html
* igt@sysfs_heartbeat_interval@mixed@vecs0:
- shard-mtlp: [FAIL][262] ([i915#1731]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-4/igt@sysfs_heartbeat_interval@mixed@vecs0.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@vecs0.html
* igt@sysfs_timeslice_duration@timeout@vecs0:
- shard-mtlp: [TIMEOUT][264] ([i915#6950]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-7/igt@sysfs_timeslice_duration@timeout@vecs0.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-4/igt@sysfs_timeslice_duration@timeout@vecs0.html
* igt@vgem_slow@nohang:
- shard-snb: [ABORT][266] ([i915#8852]) -> [PASS][267]
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-snb4/igt@vgem_slow@nohang.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-snb6/igt@vgem_slow@nohang.html
#### Warnings ####
* igt@gem_exec_whisper@basic-contexts-priority-all:
- shard-mtlp: [ABORT][268] ([i915#8131]) -> [TIMEOUT][269] ([i915#7392])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-priority-all.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-priority-all.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [DMESG-WARN][270] ([i915#4936] / [i915#5493]) -> [TIMEOUT][271] ([i915#5493])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-tglu: [WARN][272] ([i915#2681]) -> [FAIL][273] ([i915#2681] / [i915#3591]) +1 similar issue
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu: [FAIL][274] ([i915#7940]) -> [SKIP][275] ([fdo#111644] / [i915#1397])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-4/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_content_protection@content_type_change:
- shard-dg2: [SKIP][276] ([i915#7118]) -> [SKIP][277] ([i915#7118] / [i915#7162])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-10/igt@kms_content_protection@content_type_change.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-11/igt@kms_content_protection@content_type_change.html
* igt@kms_content_protection@mei_interface:
- shard-dg2: [SKIP][278] ([i915#7118] / [i915#7162]) -> [SKIP][279] ([i915#7118])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-dg2-12/igt@kms_content_protection@mei_interface.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-dg2-5/igt@kms_content_protection@mei_interface.html
- shard-rkl: [SKIP][280] ([fdo#109300]) -> [SKIP][281] ([i915#7118])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-7/igt@kms_content_protection@mei_interface.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@kms_content_protection@mei_interface.html
- shard-tglu: [SKIP][282] ([fdo#109300]) -> [SKIP][283] ([i915#6944] / [i915#7116] / [i915#7118])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-tglu-10/igt@kms_content_protection@mei_interface.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-tglu-9/igt@kms_content_protection@mei_interface.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][284] ([i915#3955]) -> [SKIP][285] ([fdo#110189] / [i915#3955])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][286] ([fdo#110189] / [i915#3955]) -> [SKIP][287] ([i915#3955])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13396/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.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#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[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#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#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#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[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#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[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#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[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#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[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#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892
[i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954
[i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015
[i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[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#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6950]: https://gitlab.freedesktop.org/drm/intel/issues/6950
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[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#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7916]: https://gitlab.freedesktop.org/drm/intel/issues/7916
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8311]: https://gitlab.freedesktop.org/drm/intel/issues/8311
[i915#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456
[i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8585]: https://gitlab.freedesktop.org/drm/intel/issues/8585
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8852]: https://gitlab.freedesktop.org/drm/intel/issues/8852
[i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7394 -> IGTPW_9437
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13396: da1bb773ff84001b185e7bec54b32b89dff44f91 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9437: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9437/index.html
IGT_7394: 3b0c82d7e9f1b8708d351243de7f227153793ede @ 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_9437/index.html
[-- Attachment #2: Type: text/html, Size: 92766 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread
* [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures
@ 2023-07-19 10:51 Zbigniew Kempczyński
2023-07-19 11:56 ` Karolina Stolarek
0 siblings, 1 reply; 20+ messages in thread
From: Zbigniew Kempczyński @ 2023-07-19 10:51 UTC (permalink / raw)
To: igt-dev
Although starting and stopping allocator in tests is nothing wrong
it may produce annoying warning on next start if test just fails
and doesn't call allocator stop. On multiprocess mode allocator
creates dedicated thread which should be properly stopped on the
test completion. Unfortunately premature test exit (failure)
leaves it waiting. Next allocator start solves this situation
(drops message queue what unblocks thread allowing it to exit)
but it logs warning informing about this situation.
To avoid producing warning move allocator start/stop to fixtures
in tests. I intentionally didn't touch api_intel_allocator (there
I want to check this functionality) and in single benchmark
(it is not executed on CI so there warning might be handy).
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Karolina Stolarek <karolina.stolarek@intel.com>
---
tests/i915/gem_linear_blits.c | 42 +++++++++++++++++-------------
tests/i915/gem_lmem_swapping.c | 4 +--
tests/i915/gem_ringfill.c | 13 ++++-----
tests/i915/gem_softpin.c | 28 +++++++++++---------
tests/i915/gem_tiled_blits.c | 40 ++++++++++++++++------------
tests/i915/gem_tiled_fence_blits.c | 22 +++++++++++-----
6 files changed, 84 insertions(+), 65 deletions(-)
diff --git a/tests/i915/gem_linear_blits.c b/tests/i915/gem_linear_blits.c
index 32b9052507..cc28e43fef 100644
--- a/tests/i915/gem_linear_blits.c
+++ b/tests/i915/gem_linear_blits.c
@@ -312,24 +312,30 @@ igt_main
igt_subtest("basic")
run_test(fd, 2, do_relocs);
- igt_describe("The intent is to push beyond the working GTT size to force"
- " the driver to rebind the buffers");
- igt_subtest("normal") {
- intel_allocator_multiprocess_start();
- igt_fork(child, ncpus)
- run_test(fd, count, do_relocs);
- igt_waitchildren();
- intel_allocator_multiprocess_stop();
- }
+ igt_subtest_group {
+ igt_fixture {
+ intel_allocator_multiprocess_start();
+ }
- igt_describe("Test with interrupts in between the parent process");
- igt_subtest("interruptible") {
- intel_allocator_multiprocess_start();
- igt_fork_signal_helper();
- igt_fork(child, ncpus)
- run_test(fd, count, do_relocs);
- igt_waitchildren();
- igt_stop_signal_helper();
- intel_allocator_multiprocess_stop();
+ igt_describe("The intent is to push beyond the working GTT size to force"
+ " the driver to rebind the buffers");
+ igt_subtest("normal") {
+ igt_fork(child, ncpus)
+ run_test(fd, count, do_relocs);
+ igt_waitchildren();
+ }
+
+ igt_describe("Test with interrupts in between the parent process");
+ igt_subtest("interruptible") {
+ igt_fork_signal_helper();
+ igt_fork(child, ncpus)
+ run_test(fd, count, do_relocs);
+ igt_waitchildren();
+ igt_stop_signal_helper();
+ }
+
+ igt_fixture {
+ intel_allocator_multiprocess_stop();
+ }
}
}
diff --git a/tests/i915/gem_lmem_swapping.c b/tests/i915/gem_lmem_swapping.c
index 2921de8f9f..0776239a95 100644
--- a/tests/i915/gem_lmem_swapping.c
+++ b/tests/i915/gem_lmem_swapping.c
@@ -708,7 +708,6 @@ static void test_evict(int i915,
if (flags & TEST_PARALLEL) {
int fd = drm_reopen_driver(i915);
- intel_allocator_multiprocess_start();
ctx = intel_ctx_create_all_physical(fd);
__gem_context_set_persistence(fd, ctx->id, false);
@@ -719,7 +718,6 @@ static void test_evict(int i915,
igt_waitchildren();
intel_ctx_destroy(fd, ctx);
drm_close_driver(fd);
- intel_allocator_multiprocess_stop();
} else {
__do_evict(i915, ctx, ®ion->region, ¶ms, params.seed);
}
@@ -904,6 +902,7 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
igt_require_gem(i915);
igt_require(gem_has_lmem(i915));
drm_close_driver(i915);
+ intel_allocator_multiprocess_start();
}
igt_i915_driver_unload();
@@ -946,6 +945,7 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
test_smem_oom(i915, ctx, region);
igt_fixture {
+ intel_allocator_multiprocess_stop();
intel_ctx_destroy(i915, ctx);
free(regions);
drm_close_driver(i915);
diff --git a/tests/i915/gem_ringfill.c b/tests/i915/gem_ringfill.c
index c718d6fe73..66fbd27fa5 100644
--- a/tests/i915/gem_ringfill.c
+++ b/tests/i915/gem_ringfill.c
@@ -456,6 +456,8 @@ igt_main
igt_require(ring_size);
ctx = intel_ctx_create_all_physical(fd);
+
+ intel_allocator_multiprocess_start();
}
/* Legacy path for selecting "rings". */
@@ -467,13 +469,11 @@ igt_main
for_each_ring(e, fd) {
igt_dynamic_f("%s", e->name) {
igt_require(gem_can_store_dword(fd, eb_ring(e)));
- intel_allocator_multiprocess_start();
run_test(fd, intel_ctx_0(fd),
eb_ring(e),
m->flags,
m->timeout);
gem_quiescent_gpu(fd);
- intel_allocator_multiprocess_stop();
}
}
}
@@ -491,13 +491,11 @@ igt_main
continue;
igt_dynamic_f("%s", e->name) {
- intel_allocator_multiprocess_start();
run_test(fd, ctx,
e->flags,
m->flags,
m->timeout);
gem_quiescent_gpu(fd);
- intel_allocator_multiprocess_stop();
}
}
}
@@ -506,7 +504,6 @@ igt_main
igt_describe("Basic check to fill the ring upto maximum on all engines simultaneously.");
igt_subtest("basic-all") {
const struct intel_execution_engine2 *e;
- intel_allocator_multiprocess_start();
for_each_ctx_engine(fd, ctx, e) {
if (!gem_class_can_store_dword(fd, e->class))
@@ -517,10 +514,10 @@ igt_main
}
igt_waitchildren();
+ }
+
+ igt_fixture {
intel_allocator_multiprocess_stop();
- }
-
- igt_fixture {
intel_ctx_destroy(fd, ctx);
drm_close_driver(fd);
}
diff --git a/tests/i915/gem_softpin.c b/tests/i915/gem_softpin.c
index e6cbf624e1..e7d8b0cd04 100644
--- a/tests/i915/gem_softpin.c
+++ b/tests/i915/gem_softpin.c
@@ -1060,13 +1060,6 @@ static void test_allocator_fork(int fd)
struct drm_i915_gem_exec_object2 objects[num_reserved];
uint64_t ahnd, ressize = 4096;
- /*
- * Must be called before opening allocator in multiprocess environment
- * due to freeing previous allocator infrastructure and proper setup
- * of data structures and allocation thread.
- */
- intel_allocator_multiprocess_start();
-
ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_SIMPLE);
__reserve(ahnd, fd, true, objects, num_reserved, ressize);
@@ -1084,8 +1077,6 @@ static void test_allocator_fork(int fd)
ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_SIMPLE);
igt_assert(intel_allocator_close(ahnd) == true);
-
- intel_allocator_multiprocess_stop();
}
#define BATCH_SIZE (4096<<10)
@@ -1666,10 +1657,6 @@ igt_main
test_allocator_nopin(fd, true);
}
- igt_describe("Check if multiple processes can use alloctor.");
- igt_subtest("allocator-fork")
- test_allocator_fork(fd);
-
igt_describe("Exercise eviction with softpinning.");
test_each_engine("allocator-evict", fd, ctx, e)
test_allocator_evict(fd, ctx, e->flags, 20);
@@ -1699,6 +1686,21 @@ igt_main
}
}
+ igt_subtest_group {
+ igt_fixture {
+ igt_require(gem_uses_full_ppgtt(fd));
+ intel_allocator_multiprocess_start();
+ }
+
+ igt_describe("Check if multiple processes can use alloctor.");
+ igt_subtest("allocator-fork")
+ test_allocator_fork(fd);
+
+ igt_fixture {
+ intel_allocator_multiprocess_stop();
+ }
+ }
+
igt_describe("Check start offset and alignment detection.");
igt_subtest("safe-alignment")
safe_alignment(fd);
diff --git a/tests/i915/gem_tiled_blits.c b/tests/i915/gem_tiled_blits.c
index 22ac3280d9..072fef3c32 100644
--- a/tests/i915/gem_tiled_blits.c
+++ b/tests/i915/gem_tiled_blits.c
@@ -211,24 +211,30 @@ igt_main
igt_subtest("basic")
run_test(fd, 2);
- igt_describe("Check with parallel execution.");
- igt_subtest("normal") {
- intel_allocator_multiprocess_start();
- igt_fork(child, ncpus)
- run_test(fd, count);
- igt_waitchildren();
- intel_allocator_multiprocess_stop();
- }
+ igt_subtest_group {
+ igt_fixture {
+ intel_allocator_multiprocess_start();
+ }
- igt_describe("Check with interrupts in parallel execution.");
- igt_subtest("interruptible") {
- intel_allocator_multiprocess_start();
- igt_fork_signal_helper();
- igt_fork(child, ncpus)
- run_test(fd, count);
- igt_waitchildren();
- igt_stop_signal_helper();
- intel_allocator_multiprocess_stop();
+ igt_describe("Check with parallel execution.");
+ igt_subtest("normal") {
+ igt_fork(child, ncpus)
+ run_test(fd, count);
+ igt_waitchildren();
+ }
+
+ igt_describe("Check with interrupts in parallel execution.");
+ igt_subtest("interruptible") {
+ igt_fork_signal_helper();
+ igt_fork(child, ncpus)
+ run_test(fd, count);
+ igt_waitchildren();
+ igt_stop_signal_helper();
+ }
+
+ igt_fixture {
+ intel_allocator_multiprocess_stop();
+ }
}
igt_fixture {
diff --git a/tests/i915/gem_tiled_fence_blits.c b/tests/i915/gem_tiled_fence_blits.c
index 5444dcfb85..c536c3699e 100644
--- a/tests/i915/gem_tiled_fence_blits.c
+++ b/tests/i915/gem_tiled_fence_blits.c
@@ -325,13 +325,21 @@ igt_main
igt_subtest("basic")
run_test(fd, 2, end);
- igt_describe("Check with parallel execution.");
- igt_subtest("normal") {
- intel_allocator_multiprocess_start();
- igt_fork(child, ncpus)
- run_test(fd, count, end);
- igt_waitchildren();
- intel_allocator_multiprocess_stop();
+ igt_subtest_group {
+ igt_fixture {
+ intel_allocator_multiprocess_start();
+ }
+
+ igt_describe("Check with parallel execution.");
+ igt_subtest("normal") {
+ igt_fork(child, ncpus)
+ run_test(fd, count, end);
+ igt_waitchildren();
+ }
+
+ igt_fixture {
+ intel_allocator_multiprocess_stop();
+ }
}
igt_fixture
--
2.34.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* Re: [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures
2023-07-19 10:51 [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures Zbigniew Kempczyński
@ 2023-07-19 11:56 ` Karolina Stolarek
2023-07-19 15:33 ` Zbigniew Kempczyński
0 siblings, 1 reply; 20+ messages in thread
From: Karolina Stolarek @ 2023-07-19 11:56 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
On 19.07.2023 12:51, Zbigniew Kempczyński wrote:
> Although starting and stopping allocator in tests is nothing wrong
> it may produce annoying warning on next start if test just fails
> and doesn't call allocator stop. On multiprocess mode allocator
> creates dedicated thread which should be properly stopped on the
> test completion. Unfortunately premature test exit (failure)
> leaves it waiting. Next allocator start solves this situation
> (drops message queue what unblocks thread allowing it to exit)
> but it logs warning informing about this situation.
>
> To avoid producing warning move allocator start/stop to fixtures
> in tests. I intentionally didn't touch api_intel_allocator (there
> I want to check this functionality) and in single benchmark
> (it is not executed on CI so there warning might be handy).
Really good commit message, gives enough context to understand the "why"
of this change
>
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Karolina Stolarek <karolina.stolarek@intel.com>
> ---
> tests/i915/gem_linear_blits.c | 42 +++++++++++++++++-------------
> tests/i915/gem_lmem_swapping.c | 4 +--
> tests/i915/gem_ringfill.c | 13 ++++-----
> tests/i915/gem_softpin.c | 28 +++++++++++---------
> tests/i915/gem_tiled_blits.c | 40 ++++++++++++++++------------
> tests/i915/gem_tiled_fence_blits.c | 22 +++++++++++-----
> 6 files changed, 84 insertions(+), 65 deletions(-)
>
> diff --git a/tests/i915/gem_linear_blits.c b/tests/i915/gem_linear_blits.c
> index 32b9052507..cc28e43fef 100644
> --- a/tests/i915/gem_linear_blits.c
> +++ b/tests/i915/gem_linear_blits.c
> @@ -312,24 +312,30 @@ igt_main
> igt_subtest("basic")
> run_test(fd, 2, do_relocs);
>
> - igt_describe("The intent is to push beyond the working GTT size to force"
> - " the driver to rebind the buffers");
> - igt_subtest("normal") {
> - intel_allocator_multiprocess_start();
> - igt_fork(child, ncpus)
> - run_test(fd, count, do_relocs);
> - igt_waitchildren();
> - intel_allocator_multiprocess_stop();
> - }
> + igt_subtest_group {
> + igt_fixture {
> + intel_allocator_multiprocess_start();
> + }
>
> - igt_describe("Test with interrupts in between the parent process");
> - igt_subtest("interruptible") {
> - intel_allocator_multiprocess_start();
> - igt_fork_signal_helper();
> - igt_fork(child, ncpus)
> - run_test(fd, count, do_relocs);
> - igt_waitchildren();
> - igt_stop_signal_helper();
> - intel_allocator_multiprocess_stop();
> + igt_describe("The intent is to push beyond the working GTT size to force"
> + " the driver to rebind the buffers");
> + igt_subtest("normal") {
> + igt_fork(child, ncpus)
> + run_test(fd, count, do_relocs);
> + igt_waitchildren();
> + }
> +
> + igt_describe("Test with interrupts in between the parent process");
> + igt_subtest("interruptible") {
> + igt_fork_signal_helper();
> + igt_fork(child, ncpus)
> + run_test(fd, count, do_relocs);
> + igt_waitchildren();
> + igt_stop_signal_helper();
> + }
> +
> + igt_fixture {
> + intel_allocator_multiprocess_stop();
> + }
> }
> }
> diff --git a/tests/i915/gem_lmem_swapping.c b/tests/i915/gem_lmem_swapping.c
> index 2921de8f9f..0776239a95 100644
> --- a/tests/i915/gem_lmem_swapping.c
> +++ b/tests/i915/gem_lmem_swapping.c
> @@ -708,7 +708,6 @@ static void test_evict(int i915,
> if (flags & TEST_PARALLEL) {
> int fd = drm_reopen_driver(i915);
>
> - intel_allocator_multiprocess_start();
> ctx = intel_ctx_create_all_physical(fd);
> __gem_context_set_persistence(fd, ctx->id, false);
>
> @@ -719,7 +718,6 @@ static void test_evict(int i915,
> igt_waitchildren();
> intel_ctx_destroy(fd, ctx);
> drm_close_driver(fd);
> - intel_allocator_multiprocess_stop();
> } else {
> __do_evict(i915, ctx, ®ion->region, ¶ms, params.seed);
> }
> @@ -904,6 +902,7 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
> igt_require_gem(i915);
> igt_require(gem_has_lmem(i915));
> drm_close_driver(i915);
> + intel_allocator_multiprocess_start();
Will this and end fixture be executed for each
igt_dynamic_f/dynamic_lmem_subtest()? (The comment applies to other
tests, such as gem_ringfill.c)
> }
>
> igt_i915_driver_unload();
> @@ -946,6 +945,7 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
> test_smem_oom(i915, ctx, region);
>
> igt_fixture {
> + intel_allocator_multiprocess_stop();
> intel_ctx_destroy(i915, ctx);
> free(regions);
> drm_close_driver(i915);
> diff --git a/tests/i915/gem_ringfill.c b/tests/i915/gem_ringfill.c
> index c718d6fe73..66fbd27fa5 100644
> --- a/tests/i915/gem_ringfill.c
> +++ b/tests/i915/gem_ringfill.c
> @@ -456,6 +456,8 @@ igt_main
> igt_require(ring_size);
>
> ctx = intel_ctx_create_all_physical(fd);
> +
> + intel_allocator_multiprocess_start();
> }
>
> /* Legacy path for selecting "rings". */
> @@ -467,13 +469,11 @@ igt_main
> for_each_ring(e, fd) {
> igt_dynamic_f("%s", e->name) {
> igt_require(gem_can_store_dword(fd, eb_ring(e)));
> - intel_allocator_multiprocess_start();
> run_test(fd, intel_ctx_0(fd),
> eb_ring(e),
> m->flags,
> m->timeout);
> gem_quiescent_gpu(fd);
> - intel_allocator_multiprocess_stop();
> }
> }
> }
> @@ -491,13 +491,11 @@ igt_main
> continue;
>
> igt_dynamic_f("%s", e->name) {
> - intel_allocator_multiprocess_start();
> run_test(fd, ctx,
> e->flags,
> m->flags,
> m->timeout);
> gem_quiescent_gpu(fd);
> - intel_allocator_multiprocess_stop();
> }
> }
> }
> @@ -506,7 +504,6 @@ igt_main
> igt_describe("Basic check to fill the ring upto maximum on all engines simultaneously.");
> igt_subtest("basic-all") {
> const struct intel_execution_engine2 *e;
> - intel_allocator_multiprocess_start();
>
> for_each_ctx_engine(fd, ctx, e) {
> if (!gem_class_can_store_dword(fd, e->class))
> @@ -517,10 +514,10 @@ igt_main
> }
>
> igt_waitchildren();
> + }
> +
> + igt_fixture {
> intel_allocator_multiprocess_stop();
> - }
> -
> - igt_fixture {
> intel_ctx_destroy(fd, ctx);
> drm_close_driver(fd);
> }
> diff --git a/tests/i915/gem_softpin.c b/tests/i915/gem_softpin.c
We also start and stop the intel allocator inside test_allocator_evict()
-- is that intentional?
> index e6cbf624e1..e7d8b0cd04 100644
> --- a/tests/i915/gem_softpin.c
> +++ b/tests/i915/gem_softpin.c
> @@ -1060,13 +1060,6 @@ static void test_allocator_fork(int fd)
> struct drm_i915_gem_exec_object2 objects[num_reserved];
> uint64_t ahnd, ressize = 4096;
>
> - /*
> - * Must be called before opening allocator in multiprocess environment
> - * due to freeing previous allocator infrastructure and proper setup
> - * of data structures and allocation thread.
> - */
> - intel_allocator_multiprocess_start();
> -
> ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_SIMPLE);
> __reserve(ahnd, fd, true, objects, num_reserved, ressize);
>
> @@ -1084,8 +1077,6 @@ static void test_allocator_fork(int fd)
>
> ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_SIMPLE);
> igt_assert(intel_allocator_close(ahnd) == true);
> -
> - intel_allocator_multiprocess_stop();
> }
>
> #define BATCH_SIZE (4096<<10)
> @@ -1666,10 +1657,6 @@ igt_main
> test_allocator_nopin(fd, true);
> }
>
> - igt_describe("Check if multiple processes can use alloctor.");
> - igt_subtest("allocator-fork")
> - test_allocator_fork(fd);
> -
> igt_describe("Exercise eviction with softpinning.");
> test_each_engine("allocator-evict", fd, ctx, e)
> test_allocator_evict(fd, ctx, e->flags, 20);
> @@ -1699,6 +1686,21 @@ igt_main
> }
> }
>
> + igt_subtest_group {
> + igt_fixture {
> + igt_require(gem_uses_full_ppgtt(fd));
> + intel_allocator_multiprocess_start();
> + }
> +
> + igt_describe("Check if multiple processes can use alloctor.");
Nit: s/alloctor/allocator/
All the best,
Karolina
> + igt_subtest("allocator-fork")
> + test_allocator_fork(fd);
> +
> + igt_fixture {
> + intel_allocator_multiprocess_stop();
> + }
> + }
> +
> igt_describe("Check start offset and alignment detection.");
> igt_subtest("safe-alignment")
> safe_alignment(fd);
> diff --git a/tests/i915/gem_tiled_blits.c b/tests/i915/gem_tiled_blits.c
> index 22ac3280d9..072fef3c32 100644
> --- a/tests/i915/gem_tiled_blits.c
> +++ b/tests/i915/gem_tiled_blits.c
> @@ -211,24 +211,30 @@ igt_main
> igt_subtest("basic")
> run_test(fd, 2);
>
> - igt_describe("Check with parallel execution.");
> - igt_subtest("normal") {
> - intel_allocator_multiprocess_start();
> - igt_fork(child, ncpus)
> - run_test(fd, count);
> - igt_waitchildren();
> - intel_allocator_multiprocess_stop();
> - }
> + igt_subtest_group {
> + igt_fixture {
> + intel_allocator_multiprocess_start();
> + }
>
> - igt_describe("Check with interrupts in parallel execution.");
> - igt_subtest("interruptible") {
> - intel_allocator_multiprocess_start();
> - igt_fork_signal_helper();
> - igt_fork(child, ncpus)
> - run_test(fd, count);
> - igt_waitchildren();
> - igt_stop_signal_helper();
> - intel_allocator_multiprocess_stop();
> + igt_describe("Check with parallel execution.");
> + igt_subtest("normal") {
> + igt_fork(child, ncpus)
> + run_test(fd, count);
> + igt_waitchildren();
> + }
> +
> + igt_describe("Check with interrupts in parallel execution.");
> + igt_subtest("interruptible") {
> + igt_fork_signal_helper();
> + igt_fork(child, ncpus)
> + run_test(fd, count);
> + igt_waitchildren();
> + igt_stop_signal_helper();
> + }
> +
> + igt_fixture {
> + intel_allocator_multiprocess_stop();
> + }
> }
>
> igt_fixture {
> diff --git a/tests/i915/gem_tiled_fence_blits.c b/tests/i915/gem_tiled_fence_blits.c
> index 5444dcfb85..c536c3699e 100644
> --- a/tests/i915/gem_tiled_fence_blits.c
> +++ b/tests/i915/gem_tiled_fence_blits.c
> @@ -325,13 +325,21 @@ igt_main
> igt_subtest("basic")
> run_test(fd, 2, end);
>
> - igt_describe("Check with parallel execution.");
> - igt_subtest("normal") {
> - intel_allocator_multiprocess_start();
> - igt_fork(child, ncpus)
> - run_test(fd, count, end);
> - igt_waitchildren();
> - intel_allocator_multiprocess_stop();
> + igt_subtest_group {
> + igt_fixture {
> + intel_allocator_multiprocess_start();
> + }
> +
> + igt_describe("Check with parallel execution.");
> + igt_subtest("normal") {
> + igt_fork(child, ncpus)
> + run_test(fd, count, end);
> + igt_waitchildren();
> + }
> +
> + igt_fixture {
> + intel_allocator_multiprocess_stop();
> + }
> }
>
> igt_fixture
^ permalink raw reply [flat|nested] 20+ messages in thread* Re: [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures
2023-07-19 11:56 ` Karolina Stolarek
@ 2023-07-19 15:33 ` Zbigniew Kempczyński
0 siblings, 0 replies; 20+ messages in thread
From: Zbigniew Kempczyński @ 2023-07-19 15:33 UTC (permalink / raw)
To: Karolina Stolarek; +Cc: igt-dev
On Wed, Jul 19, 2023 at 01:56:08PM +0200, Karolina Stolarek wrote:
> On 19.07.2023 12:51, Zbigniew Kempczyński wrote:
> > Although starting and stopping allocator in tests is nothing wrong
> > it may produce annoying warning on next start if test just fails
> > and doesn't call allocator stop. On multiprocess mode allocator
> > creates dedicated thread which should be properly stopped on the
> > test completion. Unfortunately premature test exit (failure)
> > leaves it waiting. Next allocator start solves this situation
> > (drops message queue what unblocks thread allowing it to exit)
> > but it logs warning informing about this situation.
> >
> > To avoid producing warning move allocator start/stop to fixtures
> > in tests. I intentionally didn't touch api_intel_allocator (there
> > I want to check this functionality) and in single benchmark
> > (it is not executed on CI so there warning might be handy).
>
> Really good commit message, gives enough context to understand the "why" of
> this change
>
> >
> > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > Cc: Karolina Stolarek <karolina.stolarek@intel.com>
> > ---
> > tests/i915/gem_linear_blits.c | 42 +++++++++++++++++-------------
> > tests/i915/gem_lmem_swapping.c | 4 +--
> > tests/i915/gem_ringfill.c | 13 ++++-----
> > tests/i915/gem_softpin.c | 28 +++++++++++---------
> > tests/i915/gem_tiled_blits.c | 40 ++++++++++++++++------------
> > tests/i915/gem_tiled_fence_blits.c | 22 +++++++++++-----
> > 6 files changed, 84 insertions(+), 65 deletions(-)
> >
> > diff --git a/tests/i915/gem_linear_blits.c b/tests/i915/gem_linear_blits.c
> > index 32b9052507..cc28e43fef 100644
> > --- a/tests/i915/gem_linear_blits.c
> > +++ b/tests/i915/gem_linear_blits.c
> > @@ -312,24 +312,30 @@ igt_main
> > igt_subtest("basic")
> > run_test(fd, 2, do_relocs);
> > - igt_describe("The intent is to push beyond the working GTT size to force"
> > - " the driver to rebind the buffers");
> > - igt_subtest("normal") {
> > - intel_allocator_multiprocess_start();
> > - igt_fork(child, ncpus)
> > - run_test(fd, count, do_relocs);
> > - igt_waitchildren();
> > - intel_allocator_multiprocess_stop();
> > - }
> > + igt_subtest_group {
> > + igt_fixture {
> > + intel_allocator_multiprocess_start();
> > + }
> > - igt_describe("Test with interrupts in between the parent process");
> > - igt_subtest("interruptible") {
> > - intel_allocator_multiprocess_start();
> > - igt_fork_signal_helper();
> > - igt_fork(child, ncpus)
> > - run_test(fd, count, do_relocs);
> > - igt_waitchildren();
> > - igt_stop_signal_helper();
> > - intel_allocator_multiprocess_stop();
> > + igt_describe("The intent is to push beyond the working GTT size to force"
> > + " the driver to rebind the buffers");
> > + igt_subtest("normal") {
> > + igt_fork(child, ncpus)
> > + run_test(fd, count, do_relocs);
> > + igt_waitchildren();
> > + }
> > +
> > + igt_describe("Test with interrupts in between the parent process");
> > + igt_subtest("interruptible") {
> > + igt_fork_signal_helper();
> > + igt_fork(child, ncpus)
> > + run_test(fd, count, do_relocs);
> > + igt_waitchildren();
> > + igt_stop_signal_helper();
> > + }
> > +
> > + igt_fixture {
> > + intel_allocator_multiprocess_stop();
> > + }
> > }
> > }
> > diff --git a/tests/i915/gem_lmem_swapping.c b/tests/i915/gem_lmem_swapping.c
> > index 2921de8f9f..0776239a95 100644
> > --- a/tests/i915/gem_lmem_swapping.c
> > +++ b/tests/i915/gem_lmem_swapping.c
> > @@ -708,7 +708,6 @@ static void test_evict(int i915,
> > if (flags & TEST_PARALLEL) {
> > int fd = drm_reopen_driver(i915);
> > - intel_allocator_multiprocess_start();
> > ctx = intel_ctx_create_all_physical(fd);
> > __gem_context_set_persistence(fd, ctx->id, false);
> > @@ -719,7 +718,6 @@ static void test_evict(int i915,
> > igt_waitchildren();
> > intel_ctx_destroy(fd, ctx);
> > drm_close_driver(fd);
> > - intel_allocator_multiprocess_stop();
> > } else {
> > __do_evict(i915, ctx, ®ion->region, ¶ms, params.seed);
> > }
> > @@ -904,6 +902,7 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
> > igt_require_gem(i915);
> > igt_require(gem_has_lmem(i915));
> > drm_close_driver(i915);
> > + intel_allocator_multiprocess_start();
>
> Will this and end fixture be executed for each
> igt_dynamic_f/dynamic_lmem_subtest()? (The comment applies to other tests,
> such as gem_ringfill.c)
Good catch. If we got module unloaded before allocator thread
wouldn't start. I'll migrate this to end of opening fixture
block.
>
> > }
> > igt_i915_driver_unload();
> > @@ -946,6 +945,7 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
> > test_smem_oom(i915, ctx, region);
> > igt_fixture {
> > + intel_allocator_multiprocess_stop();
> > intel_ctx_destroy(i915, ctx);
> > free(regions);
> > drm_close_driver(i915);
> > diff --git a/tests/i915/gem_ringfill.c b/tests/i915/gem_ringfill.c
> > index c718d6fe73..66fbd27fa5 100644
> > --- a/tests/i915/gem_ringfill.c
> > +++ b/tests/i915/gem_ringfill.c
> > @@ -456,6 +456,8 @@ igt_main
> > igt_require(ring_size);
> > ctx = intel_ctx_create_all_physical(fd);
> > +
> > + intel_allocator_multiprocess_start();
> > }
> > /* Legacy path for selecting "rings". */
> > @@ -467,13 +469,11 @@ igt_main
> > for_each_ring(e, fd) {
> > igt_dynamic_f("%s", e->name) {
> > igt_require(gem_can_store_dword(fd, eb_ring(e)));
> > - intel_allocator_multiprocess_start();
> > run_test(fd, intel_ctx_0(fd),
> > eb_ring(e),
> > m->flags,
> > m->timeout);
> > gem_quiescent_gpu(fd);
> > - intel_allocator_multiprocess_stop();
> > }
> > }
> > }
> > @@ -491,13 +491,11 @@ igt_main
> > continue;
> > igt_dynamic_f("%s", e->name) {
> > - intel_allocator_multiprocess_start();
> > run_test(fd, ctx,
> > e->flags,
> > m->flags,
> > m->timeout);
> > gem_quiescent_gpu(fd);
> > - intel_allocator_multiprocess_stop();
> > }
> > }
> > }
> > @@ -506,7 +504,6 @@ igt_main
> > igt_describe("Basic check to fill the ring upto maximum on all engines simultaneously.");
> > igt_subtest("basic-all") {
> > const struct intel_execution_engine2 *e;
> > - intel_allocator_multiprocess_start();
> > for_each_ctx_engine(fd, ctx, e) {
> > if (!gem_class_can_store_dword(fd, e->class))
> > @@ -517,10 +514,10 @@ igt_main
> > }
> > igt_waitchildren();
> > + }
> > +
> > + igt_fixture {
> > intel_allocator_multiprocess_stop();
> > - }
> > -
> > - igt_fixture {
> > intel_ctx_destroy(fd, ctx);
> > drm_close_driver(fd);
> > }
> > diff --git a/tests/i915/gem_softpin.c b/tests/i915/gem_softpin.c
>
> We also start and stop the intel allocator inside test_allocator_evict() --
> is that intentional?
Second good catch, thanks! This also should use externally started
allocator thread.
>
> > index e6cbf624e1..e7d8b0cd04 100644
> > --- a/tests/i915/gem_softpin.c
> > +++ b/tests/i915/gem_softpin.c
> > @@ -1060,13 +1060,6 @@ static void test_allocator_fork(int fd)
> > struct drm_i915_gem_exec_object2 objects[num_reserved];
> > uint64_t ahnd, ressize = 4096;
> > - /*
> > - * Must be called before opening allocator in multiprocess environment
> > - * due to freeing previous allocator infrastructure and proper setup
> > - * of data structures and allocation thread.
> > - */
> > - intel_allocator_multiprocess_start();
> > -
> > ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_SIMPLE);
> > __reserve(ahnd, fd, true, objects, num_reserved, ressize);
> > @@ -1084,8 +1077,6 @@ static void test_allocator_fork(int fd)
> > ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_SIMPLE);
> > igt_assert(intel_allocator_close(ahnd) == true);
> > -
> > - intel_allocator_multiprocess_stop();
> > }
> > #define BATCH_SIZE (4096<<10)
> > @@ -1666,10 +1657,6 @@ igt_main
> > test_allocator_nopin(fd, true);
> > }
> > - igt_describe("Check if multiple processes can use alloctor.");
> > - igt_subtest("allocator-fork")
> > - test_allocator_fork(fd);
> > -
> > igt_describe("Exercise eviction with softpinning.");
> > test_each_engine("allocator-evict", fd, ctx, e)
> > test_allocator_evict(fd, ctx, e->flags, 20);
> > @@ -1699,6 +1686,21 @@ igt_main
> > }
> > }
> > + igt_subtest_group {
> > + igt_fixture {
> > + igt_require(gem_uses_full_ppgtt(fd));
> > + intel_allocator_multiprocess_start();
> > + }
> > +
> > + igt_describe("Check if multiple processes can use alloctor.");
>
> Nit: s/alloctor/allocator/
>
Yes, copy-paste issue from previous test. I've also fixed test description
in the comment.
Thank you for the review.
--
Zbigniew
> All the best,
> Karolina
>
> > + igt_subtest("allocator-fork")
> > + test_allocator_fork(fd);
> > +
> > + igt_fixture {
> > + intel_allocator_multiprocess_stop();
> > + }
> > + }
> > +
> > igt_describe("Check start offset and alignment detection.");
> > igt_subtest("safe-alignment")
> > safe_alignment(fd);
> > diff --git a/tests/i915/gem_tiled_blits.c b/tests/i915/gem_tiled_blits.c
> > index 22ac3280d9..072fef3c32 100644
> > --- a/tests/i915/gem_tiled_blits.c
> > +++ b/tests/i915/gem_tiled_blits.c
> > @@ -211,24 +211,30 @@ igt_main
> > igt_subtest("basic")
> > run_test(fd, 2);
> > - igt_describe("Check with parallel execution.");
> > - igt_subtest("normal") {
> > - intel_allocator_multiprocess_start();
> > - igt_fork(child, ncpus)
> > - run_test(fd, count);
> > - igt_waitchildren();
> > - intel_allocator_multiprocess_stop();
> > - }
> > + igt_subtest_group {
> > + igt_fixture {
> > + intel_allocator_multiprocess_start();
> > + }
> > - igt_describe("Check with interrupts in parallel execution.");
> > - igt_subtest("interruptible") {
> > - intel_allocator_multiprocess_start();
> > - igt_fork_signal_helper();
> > - igt_fork(child, ncpus)
> > - run_test(fd, count);
> > - igt_waitchildren();
> > - igt_stop_signal_helper();
> > - intel_allocator_multiprocess_stop();
> > + igt_describe("Check with parallel execution.");
> > + igt_subtest("normal") {
> > + igt_fork(child, ncpus)
> > + run_test(fd, count);
> > + igt_waitchildren();
> > + }
> > +
> > + igt_describe("Check with interrupts in parallel execution.");
> > + igt_subtest("interruptible") {
> > + igt_fork_signal_helper();
> > + igt_fork(child, ncpus)
> > + run_test(fd, count);
> > + igt_waitchildren();
> > + igt_stop_signal_helper();
> > + }
> > +
> > + igt_fixture {
> > + intel_allocator_multiprocess_stop();
> > + }
> > }
> > igt_fixture {
> > diff --git a/tests/i915/gem_tiled_fence_blits.c b/tests/i915/gem_tiled_fence_blits.c
> > index 5444dcfb85..c536c3699e 100644
> > --- a/tests/i915/gem_tiled_fence_blits.c
> > +++ b/tests/i915/gem_tiled_fence_blits.c
> > @@ -325,13 +325,21 @@ igt_main
> > igt_subtest("basic")
> > run_test(fd, 2, end);
> > - igt_describe("Check with parallel execution.");
> > - igt_subtest("normal") {
> > - intel_allocator_multiprocess_start();
> > - igt_fork(child, ncpus)
> > - run_test(fd, count, end);
> > - igt_waitchildren();
> > - intel_allocator_multiprocess_stop();
> > + igt_subtest_group {
> > + igt_fixture {
> > + intel_allocator_multiprocess_start();
> > + }
> > +
> > + igt_describe("Check with parallel execution.");
> > + igt_subtest("normal") {
> > + igt_fork(child, ncpus)
> > + run_test(fd, count, end);
> > + igt_waitchildren();
> > + }
> > +
> > + igt_fixture {
> > + intel_allocator_multiprocess_stop();
> > + }
> > }
> > igt_fixture
^ permalink raw reply [flat|nested] 20+ messages in thread
end of thread, other threads:[~2023-07-20 11:06 UTC | newest]
Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-19 15:36 [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures Zbigniew Kempczyński
2023-07-19 16:24 ` [igt-dev] ○ CI.xeBAT: info for tests/gem_*: Migrate allocator start/stop to fixtures (rev2) Patchwork
2023-07-19 16:34 ` [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures Karolina Stolarek
2023-07-19 16:37 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/gem_*: Migrate allocator start/stop to fixtures (rev2) Patchwork
2023-07-19 17:09 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/gem_*: Migrate allocator start/stop to fixtures (rev3) Patchwork
2023-07-19 17:40 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
2023-07-19 17:48 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
2023-07-19 20:04 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/gem_*: Migrate allocator start/stop to fixtures (rev4) Patchwork
2023-07-20 4:28 ` Zbigniew Kempczyński
2023-07-19 21:05 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
2023-07-20 5:28 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-07-20 5:36 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_*: Migrate allocator start/stop to fixtures (rev3) Patchwork
2023-07-20 7:29 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/gem_*: Migrate allocator start/stop to fixtures (rev4) Patchwork
2023-07-20 8:19 ` Zbigniew Kempczyński
2023-07-20 11:06 ` Yedireswarapu, SaiX Nandan
2023-07-20 8:25 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/gem_*: Migrate allocator start/stop to fixtures (rev3) Patchwork
2023-07-20 11:05 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/gem_*: Migrate allocator start/stop to fixtures (rev4) Patchwork
-- strict thread matches above, loose matches on Subject: below --
2023-07-19 10:51 [igt-dev] [PATCH i-g-t] tests/gem_*: Migrate allocator start/stop to fixtures Zbigniew Kempczyński
2023-07-19 11:56 ` Karolina Stolarek
2023-07-19 15:33 ` Zbigniew Kempczyński
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox