* [igt-dev] [i-g-t][PATCH v2 1/1] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests
@ 2023-09-01 3:24 Sujaritha Sundaresan
2023-09-01 4:26 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,v2,1/1] " Patchwork
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Sujaritha Sundaresan @ 2023-09-01 3:24 UTC (permalink / raw)
To: igt-dev
Adding multi-gt support for rc6_residency subtests rc6_idle and
rc6_fence.
v2: Fix review comments (Riana)
Signed-off-by: Sujaritha Sundaresan <sujaritha.sundaresan@intel.com>
---
tests/i915/i915_pm_rc6_residency.c | 32 +++++++++++++++++++-----------
1 file changed, 20 insertions(+), 12 deletions(-)
diff --git a/tests/i915/i915_pm_rc6_residency.c b/tests/i915/i915_pm_rc6_residency.c
index b266680ac..3c4e1477a 100644
--- a/tests/i915/i915_pm_rc6_residency.c
+++ b/tests/i915/i915_pm_rc6_residency.c
@@ -376,7 +376,7 @@ static void kill_children(int sig)
signal(sig, old);
}
-static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags)
+static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt)
{
const int64_t duration_ns = SLEEP_DURATION * (int64_t)NSEC_PER_SEC;
const int tolerance = 20; /* Some RC6 is better than none! */
@@ -397,7 +397,7 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags)
struct igt_power gpu;
int fd;
- fd = open_pmu(i915, I915_PMU_RC6_RESIDENCY);
+ fd = open_pmu(i915, __I915_PMU_RC6_RESIDENCY(gt));
igt_drop_caches_set(i915, DROP_IDLE);
igt_require(__pmu_wait_for_rc6(fd));
igt_power_open(i915, &gpu, "gpu");
@@ -471,12 +471,13 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags)
}
}
-static void rc6_fence(int i915, const intel_ctx_t *ctx)
+static void rc6_fence(int i915, unsigned int gt)
{
const int64_t duration_ns = SLEEP_DURATION * (int64_t)NSEC_PER_SEC;
const int tolerance = 20; /* Some RC6 is better than none! */
const unsigned int gen = intel_gen(intel_get_drm_devid(i915));
const struct intel_execution_engine2 *e;
+ const intel_ctx_t *ctx;
struct power_sample sample[2];
unsigned long slept;
uint64_t rc6, ts[2], ahnd;
@@ -485,7 +486,7 @@ static void rc6_fence(int i915, const intel_ctx_t *ctx)
igt_require_sw_sync();
- fd = open_pmu(i915, I915_PMU_RC6_RESIDENCY);
+ fd = open_pmu(i915, __I915_PMU_RC6_RESIDENCY(gt));
igt_drop_caches_set(i915, DROP_IDLE);
igt_require(__pmu_wait_for_rc6(fd));
igt_power_open(i915, &gpu, "gpu");
@@ -509,6 +510,7 @@ static void rc6_fence(int i915, const intel_ctx_t *ctx)
assert_within_epsilon(rc6, ts[1] - ts[0], 5);
/* Submit but delay execution, we should be idle and conserving power */
+ ctx = intel_ctx_create_for_gt(i915, gt);
ahnd = get_reloc_ahnd(i915, ctx->id);
for_each_ctx_engine(i915, ctx, e) {
igt_spin_t *spin;
@@ -550,6 +552,7 @@ static void rc6_fence(int i915, const intel_ctx_t *ctx)
gem_quiescent_gpu(i915);
}
put_ahnd(ahnd);
+ intel_ctx_destroy(i915, ctx);
igt_power_close(&gpu);
close(fd);
@@ -558,12 +561,12 @@ static void rc6_fence(int i915, const intel_ctx_t *ctx)
igt_main
{
int i915 = -1;
+ unsigned int dir, gt;
const intel_ctx_t *ctx;
/* Use drm_open_driver to verify device existence */
igt_fixture {
i915 = drm_open_driver(DRIVER_INTEL);
- ctx = intel_ctx_create_all_physical(i915);
}
igt_subtest_with_dynamic("rc6-idle") {
@@ -572,19 +575,25 @@ igt_main
igt_require_gem(i915);
gem_quiescent_gpu(i915);
- for_each_ctx_engine(i915, ctx, e) {
- if (e->instance == 0) {
- igt_dynamic_f("%s", e->name)
- rc6_idle(i915, ctx->id, e->flags);
+ i915_for_each_gt(i915, dir, gt) {
+ ctx = intel_ctx_create_for_gt(i915, gt);
+ for_each_ctx_engine(i915, ctx, e) {
+ if (e->instance == 0) {
+ igt_dynamic_f("gt%u-%s", gt, e->name)
+ rc6_idle(i915, ctx->id, e->flags, gt);
+ }
+ intel_ctx_destroy(i915, ctx);
}
}
}
- igt_subtest("rc6-fence") {
+ igt_subtest_with_dynamic("rc6-fence") {
igt_require_gem(i915);
gem_quiescent_gpu(i915);
- rc6_fence(i915, ctx);
+ i915_for_each_gt(i915, dir, gt)
+ igt_dynamic_f("gt%u", gt)
+ rc6_fence(i915, gt);
}
igt_subtest_group {
@@ -626,7 +635,6 @@ igt_main
}
igt_fixture {
- intel_ctx_destroy(i915, ctx);
drm_close_driver(i915);
}
}
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,v2,1/1] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests 2023-09-01 3:24 [igt-dev] [i-g-t][PATCH v2 1/1] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests Sujaritha Sundaresan @ 2023-09-01 4:26 ` Patchwork 2023-09-01 4:52 ` [igt-dev] [i-g-t][PATCH v2 1/1] " Riana Tauro ` (3 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-01 4:26 UTC (permalink / raw) To: Sujaritha Sundaresan; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,v2,1/1] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests URL : https://patchwork.freedesktop.org/series/123141/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/975067 for the overview. build-containers:build-debian has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/48342546): time="2023-09-01T04:22:01Z" level=fatal msg="Error determining repository tags: Get https://registry.freedesktop.org/v2/gfx-ci/igt-ci-tags/build-debian-minimal/tags/list?last=commit-f1fcde9103383c59d91881d1390a8859be395ce0&n=100: dial tcp 147.75.198.156:443: i/o timeout" Building! STEP 1: FROM debian:buster Getting image source signatures Copying blob sha256:d6b7393fb4f375905c31c483d81ce2a2905f88aba8cb198874da2b54035bc41d Copying config sha256:de08540e8ff0e470ff7956df4bed403725a5f45c186e9bf495da5344ff8fbe84 Writing manifest to image destination Storing signatures STEP 2: RUN apt-get update error running container: error creating container for [/bin/sh -c apt-get update]: time="2023-09-01T04:22:11Z" level=warning msg="signal: killed" time="2023-09-01T04:22:11Z" level=error msg="container_linux.go:346: starting container process caused \"process_linux.go:297: applying cgroup configuration for process caused \\\"mountpoint for cgroup not found\\\"\"\n" container_linux.go:346: starting container process caused "process_linux.go:297: applying cgroup configuration for process caused \"mountpoint for cgroup not found\"" : exit status 1 Error: error building at STEP "RUN apt-get update": error while running runtime: exit status 1 section_end:1693542132:step_script section_start:1693542132:cleanup_file_variables Cleaning up project directory and file based variables section_end:1693542132:cleanup_file_variables ERROR: Job failed: exit code 1 build-containers:build-debian-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/48342547): time="2023-09-01T04:21:43Z" level=fatal msg="Get https://gitlab.freedesktop.org/jwt/auth?account=gitlab-ci-token&scope=repository%3Agfx-ci%2Figt-ci-tags%2Fbuild-debian-armhf%3Apull&service=container_registry: dial tcp 147.75.198.156:443: i/o timeout" Building! STEP 1: FROM debian:buster Getting image source signatures Copying blob sha256:d6b7393fb4f375905c31c483d81ce2a2905f88aba8cb198874da2b54035bc41d Copying config sha256:de08540e8ff0e470ff7956df4bed403725a5f45c186e9bf495da5344ff8fbe84 Writing manifest to image destination Storing signatures STEP 2: RUN apt-get update error running container: error creating container for [/bin/sh -c apt-get update]: time="2023-09-01T04:21:48Z" level=warning msg="signal: killed" time="2023-09-01T04:21:48Z" level=error msg="container_linux.go:346: starting container process caused \"process_linux.go:297: applying cgroup configuration for process caused \\\"mountpoint for cgroup not found\\\"\"\n" container_linux.go:346: starting container process caused "process_linux.go:297: applying cgroup configuration for process caused \"mountpoint for cgroup not found\"" : exit status 1 Error: error building at STEP "RUN apt-get update": error while running runtime: exit status 1 section_end:1693542108:step_script section_start:1693542108:cleanup_file_variables Cleaning up project directory and file based variables section_end:1693542109:cleanup_file_variables ERROR: Job failed: exit code 1 build-containers:build-debian-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/48342549): Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out 214caec8 as detached HEAD (ref is intel/IGTPW_9701)... Skipping Git submodules setup section_end:1693542072:get_sources section_start:1693542072: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 -s -L --cacert /host/ca-certificates.crt --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 Error: error authenticating creds for "registry.freedesktop.org": pinging docker registry returned: Get https://registry.freedesktop.org/v2/: dial tcp 147.75.198.156:443: i/o timeout section_end:1693542109:step_script section_start:1693542109:cleanup_file_variables Cleaning up project directory and file based variables section_end:1693542109:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/975067 ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [i-g-t][PATCH v2 1/1] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests 2023-09-01 3:24 [igt-dev] [i-g-t][PATCH v2 1/1] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests Sujaritha Sundaresan 2023-09-01 4:26 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,v2,1/1] " Patchwork @ 2023-09-01 4:52 ` Riana Tauro 2023-09-01 5:01 ` Sundaresan, Sujaritha 2023-09-01 4:57 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/1] " Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Riana Tauro @ 2023-09-01 4:52 UTC (permalink / raw) To: Sujaritha Sundaresan, igt-dev Hi Suja On 9/1/2023 8:54 AM, Sujaritha Sundaresan wrote: > Adding multi-gt support for rc6_residency subtests rc6_idle and > rc6_fence. > > v2: Fix review comments (Riana) > > Signed-off-by: Sujaritha Sundaresan <sujaritha.sundaresan@intel.com> > --- > tests/i915/i915_pm_rc6_residency.c | 32 +++++++++++++++++++----------- > 1 file changed, 20 insertions(+), 12 deletions(-) > > diff --git a/tests/i915/i915_pm_rc6_residency.c b/tests/i915/i915_pm_rc6_residency.c > index b266680ac..3c4e1477a 100644 > --- a/tests/i915/i915_pm_rc6_residency.c > +++ b/tests/i915/i915_pm_rc6_residency.c > @@ -376,7 +376,7 @@ static void kill_children(int sig) > signal(sig, old); > } > > -static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags) > +static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt) > { > const int64_t duration_ns = SLEEP_DURATION * (int64_t)NSEC_PER_SEC; > const int tolerance = 20; /* Some RC6 is better than none! */ > @@ -397,7 +397,7 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags) > struct igt_power gpu; > int fd; > > - fd = open_pmu(i915, I915_PMU_RC6_RESIDENCY); > + fd = open_pmu(i915, __I915_PMU_RC6_RESIDENCY(gt)); > igt_drop_caches_set(i915, DROP_IDLE); > igt_require(__pmu_wait_for_rc6(fd)); > igt_power_open(i915, &gpu, "gpu"); > @@ -471,12 +471,13 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags) > } > } > > -static void rc6_fence(int i915, const intel_ctx_t *ctx) > +static void rc6_fence(int i915, unsigned int gt) > { > const int64_t duration_ns = SLEEP_DURATION * (int64_t)NSEC_PER_SEC; > const int tolerance = 20; /* Some RC6 is better than none! */ > const unsigned int gen = intel_gen(intel_get_drm_devid(i915)); > const struct intel_execution_engine2 *e; > + const intel_ctx_t *ctx; > struct power_sample sample[2]; > unsigned long slept; > uint64_t rc6, ts[2], ahnd; > @@ -485,7 +486,7 @@ static void rc6_fence(int i915, const intel_ctx_t *ctx) > > igt_require_sw_sync(); > > - fd = open_pmu(i915, I915_PMU_RC6_RESIDENCY); > + fd = open_pmu(i915, __I915_PMU_RC6_RESIDENCY(gt)); > igt_drop_caches_set(i915, DROP_IDLE); > igt_require(__pmu_wait_for_rc6(fd)); > igt_power_open(i915, &gpu, "gpu"); > @@ -509,6 +510,7 @@ static void rc6_fence(int i915, const intel_ctx_t *ctx) > assert_within_epsilon(rc6, ts[1] - ts[0], 5); > > /* Submit but delay execution, we should be idle and conserving power */ > + ctx = intel_ctx_create_for_gt(i915, gt); > ahnd = get_reloc_ahnd(i915, ctx->id); > for_each_ctx_engine(i915, ctx, e) { > igt_spin_t *spin; > @@ -550,6 +552,7 @@ static void rc6_fence(int i915, const intel_ctx_t *ctx) > gem_quiescent_gpu(i915); > } > put_ahnd(ahnd); > + intel_ctx_destroy(i915, ctx); > > igt_power_close(&gpu); > close(fd); > @@ -558,12 +561,12 @@ static void rc6_fence(int i915, const intel_ctx_t *ctx) > igt_main > { > int i915 = -1; > + unsigned int dir, gt; > const intel_ctx_t *ctx; > > /* Use drm_open_driver to verify device existence */ > igt_fixture { > i915 = drm_open_driver(DRIVER_INTEL); > - ctx = intel_ctx_create_all_physical(i915); > } > > igt_subtest_with_dynamic("rc6-idle") { > @@ -572,19 +575,25 @@ igt_main > igt_require_gem(i915); > gem_quiescent_gpu(i915); > > - for_each_ctx_engine(i915, ctx, e) { > - if (e->instance == 0) { > - igt_dynamic_f("%s", e->name) > - rc6_idle(i915, ctx->id, e->flags); > + i915_for_each_gt(i915, dir, gt) { > + ctx = intel_ctx_create_for_gt(i915, gt); > + for_each_ctx_engine(i915, ctx, e) { > + if (e->instance == 0) { > + igt_dynamic_f("gt%u-%s", gt, e->name) > + rc6_idle(i915, ctx->id, e->flags, gt); > + } > + intel_ctx_destroy(i915, ctx); This needs to be moved outside the engine loop. else the next engine will have the context NULL. Thanks Riana > } > } > } > > - igt_subtest("rc6-fence") { > + igt_subtest_with_dynamic("rc6-fence") { > igt_require_gem(i915); > gem_quiescent_gpu(i915); > > - rc6_fence(i915, ctx); > + i915_for_each_gt(i915, dir, gt) > + igt_dynamic_f("gt%u", gt) > + rc6_fence(i915, gt); > } > > igt_subtest_group { > @@ -626,7 +635,6 @@ igt_main > } > > igt_fixture { > - intel_ctx_destroy(i915, ctx); > drm_close_driver(i915); > } > } ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [i-g-t][PATCH v2 1/1] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests 2023-09-01 4:52 ` [igt-dev] [i-g-t][PATCH v2 1/1] " Riana Tauro @ 2023-09-01 5:01 ` Sundaresan, Sujaritha 0 siblings, 0 replies; 7+ messages in thread From: Sundaresan, Sujaritha @ 2023-09-01 5:01 UTC (permalink / raw) To: Riana Tauro, igt-dev On 9/1/2023 10:22 AM, Riana Tauro wrote: > Hi Suja > > On 9/1/2023 8:54 AM, Sujaritha Sundaresan wrote: >> Adding multi-gt support for rc6_residency subtests rc6_idle and >> rc6_fence. >> >> v2: Fix review comments (Riana) >> >> Signed-off-by: Sujaritha Sundaresan <sujaritha.sundaresan@intel.com> >> --- >> tests/i915/i915_pm_rc6_residency.c | 32 +++++++++++++++++++----------- >> 1 file changed, 20 insertions(+), 12 deletions(-) >> >> diff --git a/tests/i915/i915_pm_rc6_residency.c >> b/tests/i915/i915_pm_rc6_residency.c >> index b266680ac..3c4e1477a 100644 >> --- a/tests/i915/i915_pm_rc6_residency.c >> +++ b/tests/i915/i915_pm_rc6_residency.c >> @@ -376,7 +376,7 @@ static void kill_children(int sig) >> signal(sig, old); >> } >> -static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags) >> +static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, >> unsigned int gt) >> { >> const int64_t duration_ns = SLEEP_DURATION * >> (int64_t)NSEC_PER_SEC; >> const int tolerance = 20; /* Some RC6 is better than none! */ >> @@ -397,7 +397,7 @@ static void rc6_idle(int i915, uint32_t ctx_id, >> uint64_t flags) >> struct igt_power gpu; >> int fd; >> - fd = open_pmu(i915, I915_PMU_RC6_RESIDENCY); >> + fd = open_pmu(i915, __I915_PMU_RC6_RESIDENCY(gt)); >> igt_drop_caches_set(i915, DROP_IDLE); >> igt_require(__pmu_wait_for_rc6(fd)); >> igt_power_open(i915, &gpu, "gpu"); >> @@ -471,12 +471,13 @@ static void rc6_idle(int i915, uint32_t ctx_id, >> uint64_t flags) >> } >> } >> -static void rc6_fence(int i915, const intel_ctx_t *ctx) >> +static void rc6_fence(int i915, unsigned int gt) >> { >> const int64_t duration_ns = SLEEP_DURATION * >> (int64_t)NSEC_PER_SEC; >> const int tolerance = 20; /* Some RC6 is better than none! */ >> const unsigned int gen = intel_gen(intel_get_drm_devid(i915)); >> const struct intel_execution_engine2 *e; >> + const intel_ctx_t *ctx; >> struct power_sample sample[2]; >> unsigned long slept; >> uint64_t rc6, ts[2], ahnd; >> @@ -485,7 +486,7 @@ static void rc6_fence(int i915, const intel_ctx_t >> *ctx) >> igt_require_sw_sync(); >> - fd = open_pmu(i915, I915_PMU_RC6_RESIDENCY); >> + fd = open_pmu(i915, __I915_PMU_RC6_RESIDENCY(gt)); >> igt_drop_caches_set(i915, DROP_IDLE); >> igt_require(__pmu_wait_for_rc6(fd)); >> igt_power_open(i915, &gpu, "gpu"); >> @@ -509,6 +510,7 @@ static void rc6_fence(int i915, const intel_ctx_t >> *ctx) >> assert_within_epsilon(rc6, ts[1] - ts[0], 5); >> /* Submit but delay execution, we should be idle and >> conserving power */ >> + ctx = intel_ctx_create_for_gt(i915, gt); >> ahnd = get_reloc_ahnd(i915, ctx->id); >> for_each_ctx_engine(i915, ctx, e) { >> igt_spin_t *spin; >> @@ -550,6 +552,7 @@ static void rc6_fence(int i915, const intel_ctx_t >> *ctx) >> gem_quiescent_gpu(i915); >> } >> put_ahnd(ahnd); >> + intel_ctx_destroy(i915, ctx); >> igt_power_close(&gpu); >> close(fd); >> @@ -558,12 +561,12 @@ static void rc6_fence(int i915, const >> intel_ctx_t *ctx) >> igt_main >> { >> int i915 = -1; >> + unsigned int dir, gt; >> const intel_ctx_t *ctx; >> /* Use drm_open_driver to verify device existence */ >> igt_fixture { >> i915 = drm_open_driver(DRIVER_INTEL); >> - ctx = intel_ctx_create_all_physical(i915); >> } >> igt_subtest_with_dynamic("rc6-idle") { >> @@ -572,19 +575,25 @@ igt_main >> igt_require_gem(i915); >> gem_quiescent_gpu(i915); >> - for_each_ctx_engine(i915, ctx, e) { >> - if (e->instance == 0) { >> - igt_dynamic_f("%s", e->name) >> - rc6_idle(i915, ctx->id, e->flags); >> + i915_for_each_gt(i915, dir, gt) { >> + ctx = intel_ctx_create_for_gt(i915, gt); >> + for_each_ctx_engine(i915, ctx, e) { >> + if (e->instance == 0) { >> + igt_dynamic_f("gt%u-%s", gt, e->name) >> + rc6_idle(i915, ctx->id, e->flags, gt); >> + } >> + intel_ctx_destroy(i915, ctx); > This needs to be moved outside the engine loop. > else the next engine will have the context NULL. > > Thanks > Riana Yeah just spotted this error. Will fix asap. Thanks, Suja >> } >> } >> } >> - igt_subtest("rc6-fence") { >> + igt_subtest_with_dynamic("rc6-fence") { >> igt_require_gem(i915); >> gem_quiescent_gpu(i915); >> - rc6_fence(i915, ctx); >> + i915_for_each_gt(i915, dir, gt) >> + igt_dynamic_f("gt%u", gt) >> + rc6_fence(i915, gt); >> } >> igt_subtest_group { >> @@ -626,7 +635,6 @@ igt_main >> } >> igt_fixture { >> - intel_ctx_destroy(i915, ctx); >> drm_close_driver(i915); >> } >> } ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/1] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests 2023-09-01 3:24 [igt-dev] [i-g-t][PATCH v2 1/1] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests Sujaritha Sundaresan 2023-09-01 4:26 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,v2,1/1] " Patchwork 2023-09-01 4:52 ` [igt-dev] [i-g-t][PATCH v2 1/1] " Riana Tauro @ 2023-09-01 4:57 ` Patchwork 2023-09-01 5:15 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-09-01 11:07 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-01 4:57 UTC (permalink / raw) To: Sujaritha Sundaresan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7754 bytes --] == Series Details == Series: series starting with [i-g-t,v2,1/1] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests URL : https://patchwork.freedesktop.org/series/123141/ State : success == Summary == CI Bug Log - changes from IGT_7461 -> IGTPW_9701 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/index.html Participating hosts (39 -> 38) ------------------------------ Additional (1): bat-dg2-9 Missing (2): fi-kbl-soraka fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9701 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_mmap@basic: - bat-dg2-9: NOTRUN -> [SKIP][1] ([i915#4083]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/bat-dg2-9/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-dg2-9: NOTRUN -> [SKIP][2] ([i915#4077]) +2 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/bat-dg2-9/igt@gem_mmap_gtt@basic.html * igt@gem_render_tiled_blits@basic: - bat-dg2-9: NOTRUN -> [SKIP][3] ([i915#4079]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/bat-dg2-9/igt@gem_render_tiled_blits@basic.html * igt@i915_pm_backlight@basic-brightness: - bat-dg2-9: NOTRUN -> [SKIP][4] ([i915#5354] / [i915#7561]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/bat-dg2-9/igt@i915_pm_backlight@basic-brightness.html * igt@i915_pm_rps@basic-api: - bat-dg2-9: NOTRUN -> [SKIP][5] ([i915#6621]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/bat-dg2-9/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-9: NOTRUN -> [SKIP][6] ([i915#5190]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-9: NOTRUN -> [SKIP][7] ([i915#4215] / [i915#5190]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - bat-dg2-9: NOTRUN -> [SKIP][8] ([i915#4212]) +7 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg2-9: NOTRUN -> [SKIP][9] ([i915#4103] / [i915#4213]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-9: NOTRUN -> [SKIP][10] ([fdo#109285]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-9: NOTRUN -> [SKIP][11] ([i915#5274]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_psr@sprite_plane_onoff: - bat-dg2-9: NOTRUN -> [SKIP][12] ([i915#1072]) +3 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/bat-dg2-9/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg2-9: NOTRUN -> [SKIP][13] ([i915#3555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-9: NOTRUN -> [SKIP][14] ([i915#3708]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg2-9: NOTRUN -> [SKIP][15] ([i915#3708] / [i915#4077]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - bat-dg2-9: NOTRUN -> [SKIP][16] ([i915#3291] / [i915#3708]) +2 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/bat-dg2-9/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@late_gt_pm: - fi-glk-j4005: [ABORT][17] ([i915#6217]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/fi-glk-j4005/igt@i915_selftest@live@late_gt_pm.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/fi-glk-j4005/igt@i915_selftest@live@late_gt_pm.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-2: - bat-dg1-5: [FAIL][19] ([fdo#103375]) -> [PASS][20] +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/bat-dg1-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-2.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/bat-dg1-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-2.html #### Warnings #### * igt@kms_psr@primary_mmap_gtt: - bat-rplp-1: [SKIP][21] ([i915#1072]) -> [ABORT][22] ([i915#8442] / [i915#8469] / [i915#8668]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.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 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6217]: https://gitlab.freedesktop.org/drm/intel/issues/6217 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8469]: https://gitlab.freedesktop.org/drm/intel/issues/8469 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7461 -> IGTPW_9701 CI-20190529: 20190529 CI_DRM_13583: f299d7585a085ee36999da219c292e265da35886 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9701: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/index.html IGT_7461: 6791bde9776179efd61ce46c645fbf6f0743a687 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/index.html [-- Attachment #2: Type: text/html, Size: 9094 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for series starting with [i-g-t,v2,1/1] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests 2023-09-01 3:24 [igt-dev] [i-g-t][PATCH v2 1/1] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests Sujaritha Sundaresan ` (2 preceding siblings ...) 2023-09-01 4:57 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/1] " Patchwork @ 2023-09-01 5:15 ` Patchwork 2023-09-01 11:07 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-01 5:15 UTC (permalink / raw) To: Sujaritha Sundaresan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 972 bytes --] == Series Details == Series: series starting with [i-g-t,v2,1/1] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests URL : https://patchwork.freedesktop.org/series/123141/ State : success == Summary == CI Bug Log - changes from XEIGT_7461_BAT -> XEIGTPW_9701_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7461 -> IGTPW_9701 IGTPW_9701: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/index.html IGT_7461: 6791bde9776179efd61ce46c645fbf6f0743a687 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-351-bca3262d221e1402c03a89bb4ba520d6aa610505: bca3262d221e1402c03a89bb4ba520d6aa610505 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9701/index.html [-- Attachment #2: Type: text/html, Size: 1516 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,v2,1/1] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests 2023-09-01 3:24 [igt-dev] [i-g-t][PATCH v2 1/1] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests Sujaritha Sundaresan ` (3 preceding siblings ...) 2023-09-01 5:15 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-09-01 11:07 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-01 11:07 UTC (permalink / raw) To: Sundaresan, Sujaritha; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 92933 bytes --] == Series Details == Series: series starting with [i-g-t,v2,1/1] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests URL : https://patchwork.freedesktop.org/series/123141/ State : failure == Summary == CI Bug Log - changes from IGT_7461_full -> IGTPW_9701_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9701_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9701_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_9701/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9701_full: ### IGT changes ### #### Possible regressions #### * {igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0} (NEW): - shard-apl: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-apl7/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html - shard-glk: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-glk1/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html - shard-dg2: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html - shard-rkl: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html - shard-dg1: NOTRUN -> [FAIL][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html - shard-tglu: NOTRUN -> [FAIL][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html - shard-mtlp: NOTRUN -> [FAIL][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * {igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0} (NEW): - shard-tglu: NOTRUN -> [WARN][8] +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-mtlp: [PASS][9] -> [FAIL][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-2/igt@kms_psr@psr2_cursor_mmap_cpu.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-7/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@testdisplay: - shard-apl: [PASS][11] -> [TIMEOUT][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-apl6/igt@testdisplay.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-apl1/igt@testdisplay.html New tests --------- New tests have been introduced between IGT_7461_full and IGTPW_9701_full: ### New IGT tests (4) ### * igt@i915_pm_rc6_residency@rc6-fence@gt0: - Statuses : 7 pass(s) 1 warn(s) - Exec time: [0.0] s * igt@i915_pm_rc6_residency@rc6-fence@gt1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - Statuses : 7 fail(s) - Exec time: [0.0] s * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - Statuses : 6 pass(s) 1 warn(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9701_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@unbind-cold-reset-rebind: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#7701]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-3/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +22 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-5/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#658]) +6 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-12/igt@feature_discovery@psr1.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#5325]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-16/igt@gem_ccs@block-copy-compressed.html * igt@gem_close_race@multigpu-basic-process: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-2/igt@gem_close_race@multigpu-basic-process.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-15/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-mtlp: [PASS][19] -> [FAIL][20] ([i915#6121]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-5/igt@gem_ctx_exec@basic-nohangcheck.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-4/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@heartbeat-many: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#8555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#1099]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-snb4/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_ctx_persistence@saturated-hostile@vecs0: - shard-mtlp: [PASS][23] -> [FAIL][24] ([i915#7816]) +2 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-3/igt@gem_ctx_persistence@saturated-hostile@vecs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-6/igt@gem_ctx_persistence@saturated-hostile@vecs0.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-1/igt@gem_ctx_sseu@invalid-args.html - shard-tglu: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-2/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-8/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][28] -> [FAIL][29] ([i915#5784]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg1-13/igt@gem_eio@unwedge-stress.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-17/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#4812]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-15/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@hog: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4812]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-7/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4036]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-12/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_endless@dispatch@bcs0: - shard-dg1: [PASS][33] -> [TIMEOUT][34] ([i915#3778]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg1-15/igt@gem_exec_endless@dispatch@bcs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-15/igt@gem_exec_endless@dispatch@bcs0.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +4 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-10/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-rkl: NOTRUN -> [FAIL][36] ([i915#2842]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-7/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [PASS][37] -> [FAIL][38] ([i915#2842]) +2 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-rkl-6/igt@gem_exec_fair@basic-none@bcs0.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-6/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [PASS][39] -> [FAIL][40] ([i915#2842]) +2 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-glk7/igt@gem_exec_fair@basic-pace@rcs0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-glk3/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-rkl: NOTRUN -> [SKIP][41] ([fdo#109313]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-tglu: NOTRUN -> [SKIP][42] ([fdo#109313]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-5/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_params@secure-non-master: - shard-dg2: NOTRUN -> [SKIP][44] ([fdo#112283]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-10/igt@gem_exec_params@secure-non-master.html - shard-rkl: NOTRUN -> [SKIP][45] ([fdo#112283]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-6/igt@gem_exec_params@secure-non-master.html - shard-tglu: NOTRUN -> [SKIP][46] ([fdo#112283]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-6/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3281]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-12/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3281]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-softpin: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +6 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-11/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_reloc@basic-wc: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3281]) +5 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-1/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_schedule@noreorder@rcs0: - shard-mtlp: NOTRUN -> [DMESG-FAIL][51] ([i915#9121]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-4/igt@gem_exec_schedule@noreorder@rcs0.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [PASS][53] -> [INCOMPLETE][54] ([i915#6311]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg2-12/igt@gem_exec_suspend@basic-s0@smem.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-6/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_fence_thrash@bo-copy: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-13/igt@gem_fence_thrash@bo-copy.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4860]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4860]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-12/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_gpgpu_fill@basic@smem: - shard-mtlp: NOTRUN -> [FAIL][58] ([i915#5464]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-7/igt@gem_gpgpu_fill@basic@smem.html * igt@gem_lmem_swapping@parallel-multi: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4613]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-1/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][60] -> [DMESG-WARN][61] ([i915#4936] / [i915#5493]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_madvise@dontneed-before-pwrite: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282]) +4 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-1/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#8289]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-6/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4077]) +12 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-12/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_gtt@cpuset-big-copy-xy: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4077]) +5 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-19/igt@gem_mmap_gtt@cpuset-big-copy-xy.html * igt@gem_mmap_gtt@isolation: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4077]) +1 similar issue [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-7/igt@gem_mmap_gtt@isolation.html * igt@gem_mmap_wc@copy: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4083]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-6/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4083]) +4 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-1/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_partial_pwrite_pread@reads: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#3282]) +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-7/igt@gem_partial_pwrite_pread@reads.html * igt@gem_pxp@create-regular-context-2: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#4270]) +2 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-1/igt@gem_pxp@create-regular-context-2.html - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4270]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-13/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4270]) +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4270]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-8/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-tglu: NOTRUN -> [SKIP][74] ([i915#4270]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-9/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_readwrite@read-write: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#3282]) +1 similar issue [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-17/igt@gem_readwrite@read-write.html * igt@gem_softpin@evict-snoop: - shard-rkl: NOTRUN -> [SKIP][76] ([fdo#109312]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-4/igt@gem_softpin@evict-snoop.html - shard-tglu: NOTRUN -> [SKIP][77] ([fdo#109312]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-9/igt@gem_softpin@evict-snoop.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4885]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-2/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4079]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-5/igt@gem_tiled_pread_basic.html - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4079]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-10/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#3297]) +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-5/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-19/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297] / [i915#4880]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-12/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gen3_render_linear_blits: - shard-rkl: NOTRUN -> [SKIP][84] ([fdo#109289]) +2 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-4/igt@gen3_render_linear_blits.html - shard-tglu: NOTRUN -> [SKIP][85] ([fdo#109289]) +2 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-10/igt@gen3_render_linear_blits.html * igt@gen3_render_mixed_blits: - shard-dg2: NOTRUN -> [SKIP][86] ([fdo#109289]) +3 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-11/igt@gen3_render_mixed_blits.html * igt@gen9_exec_parse@allowed-single: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#2856]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-1/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-without-end: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#2856]) +3 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-2/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@batch-zero-length: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-7/igt@gen9_exec_parse@batch-zero-length.html - shard-dg1: NOTRUN -> [SKIP][90] ([i915#2527]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-19/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-large: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-8/igt@gen9_exec_parse@bb-large.html * igt@i915_hangman@engine-engine-hang@vcs0: - shard-mtlp: NOTRUN -> [FAIL][92] ([i915#7069]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-3/igt@i915_hangman@engine-engine-hang@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [PASS][93] -> [ABORT][94] ([i915#8489] / [i915#8668]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#1902]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-2/igt@i915_pm_lpsp@screens-disabled.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-dg1: NOTRUN -> [SKIP][96] ([fdo#109289]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-13/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rpm@dpms-lpsp: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#1397]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-17/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][98] -> [SKIP][99] ([i915#1397]) +2 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-rkl-6/igt@i915_pm_rpm@dpms-non-lpsp.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html - shard-dg1: [PASS][100] -> [SKIP][101] ([i915#1397]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg1-14/igt@i915_pm_rpm@dpms-non-lpsp.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#1397]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-1/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#8925]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-12/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4387]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-11/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#6245]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-18/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#6188]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-10/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_suspend@basic-s3-without-i915: - shard-snb: NOTRUN -> [DMESG-WARN][107] ([i915#8841]) +2 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-snb5/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#4215] / [i915#5190]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-10/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#4212]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-1/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4212]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-12/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#8709]) +11 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#8502]) +7 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-b-dp-2: - shard-dg2: NOTRUN -> [FAIL][113] ([i915#8247]) +3 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-12/igt@kms_async_flips@crc@pipe-b-dp-2.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][114] ([i915#8247]) +3 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-18/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#6228]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-12/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][116] ([fdo#111614]) +3 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][117] ([fdo#111615] / [i915#5286]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-9/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#5286]) +1 similar issue [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html - shard-dg1: NOTRUN -> [SKIP][119] ([i915#5286]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-15/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5286]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [PASS][121] -> [FAIL][122] ([i915#5138]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/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-mtlp: NOTRUN -> [FAIL][123] ([i915#5138]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#3638]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-17/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][125] ([fdo#111614] / [i915#3638]) +1 similar issue [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html - shard-tglu: NOTRUN -> [SKIP][126] ([fdo#111614]) +1 similar issue [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-4/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-mtlp: [PASS][127] -> [FAIL][128] ([i915#3743]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][129] ([fdo#111615]) +1 similar issue [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#5190]) +11 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +5 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][132] ([fdo#111615]) +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][133] ([fdo#110723]) +2 similar issues [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538]) +1 similar issue [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_joiner@2x-modeset: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#2705]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-12/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#5354]) +43 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-10/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-19/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#3689] / [i915#3886] / [i915#5354]) +4 similar issues [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-7/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-4_tiled_mtl_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#5354] / [i915#6095]) +4 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-1/igt@kms_ccs@pipe-b-ccs-on-another-bo-4_tiled_mtl_rc_ccs.html - shard-dg1: NOTRUN -> [SKIP][141] ([i915#5354] / [i915#6095]) +4 similar issues [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-13/igt@kms_ccs@pipe-b-ccs-on-another-bo-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#3886] / [i915#6095]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-4/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#3734] / [i915#5354] / [i915#6095]) +2 similar issues [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-10/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#3689] / [i915#5354]) +19 similar issues [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-11/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#3689] / [i915#5354] / [i915#6095]) +8 similar issues [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-14/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#5354]) +17 similar issues [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-7/igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#6095]) +2 similar issues [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-3/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][149] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-6/igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_mtl_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#5354] / [i915#6095]) +6 similar issues [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-6/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#3689] / [i915#5354] / [i915#6095]) +2 similar issues [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-4/igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_cdclk@mode-transition@pipe-a-dp-2: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#4087] / [i915#7213]) +3 similar issues [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-12/igt@kms_cdclk@mode-transition@pipe-a-dp-2.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#7828]) +4 similar issues [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-5/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#7828]) +4 similar issues [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-17/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_color@ctm-negative: - shard-rkl: NOTRUN -> [SKIP][155] ([fdo#111827]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-6/igt@kms_chamelium_color@ctm-negative.html - shard-tglu: NOTRUN -> [SKIP][156] ([fdo#111827]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-9/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][157] ([fdo#111827]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-10/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#7828]) +10 similar issues [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-2/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#7828]) +1 similar issue [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-3/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#7828]) +7 similar issues [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_color@deep-color: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#3555]) +3 similar issues [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-17/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#3116]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html - shard-tglu: NOTRUN -> [SKIP][163] ([i915#3116] / [i915#3299]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-7/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#7118]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-10/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#7118]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-6/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][166] ([i915#6944] / [i915#7116] / [i915#7118]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-4/igt@kms_content_protection@srm.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][167] ([i915#7173]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-dg2: NOTRUN -> [FAIL][168] ([i915#1339]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-12/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#8814]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#3555]) +2 similar issues [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-12/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3359]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#3555]) +6 similar issues [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-tglu: NOTRUN -> [SKIP][173] ([i915#3555]) +5 similar issues [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3359]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-dg1: NOTRUN -> [SKIP][175] ([i915#3359]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-14/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][176] ([fdo#109274]) +1 similar issue [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#4213]) +1 similar issue [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2: NOTRUN -> [SKIP][178] ([fdo#109274] / [i915#5354]) +1 similar issue [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][179] ([fdo#109274] / [fdo#111767] / [i915#5354]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-mtlp: NOTRUN -> [FAIL][180] ([i915#2346]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html - shard-apl: [PASS][181] -> [FAIL][182] ([i915#2346]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#4103] / [i915#4213]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#8827]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/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-glk: NOTRUN -> [SKIP][185] ([fdo#109271]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-glk3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html - shard-rkl: NOTRUN -> [SKIP][186] ([i915#3804]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#8812]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-6/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-18/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#4881]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-17/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-snb: NOTRUN -> [SKIP][192] ([fdo#109271] / [fdo#111767]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-snb6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#8381]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-4/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-rkl: NOTRUN -> [SKIP][194] ([fdo#111825]) +5 similar issues [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-2/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-tglu: NOTRUN -> [SKIP][195] ([fdo#109274] / [i915#3637]) +1 similar issue [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-2/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg2: NOTRUN -> [SKIP][196] ([fdo#109274]) +4 similar issues [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2: - shard-glk: [PASS][197] -> [FAIL][198] ([i915#79]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-glk1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html * igt@kms_flip@flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#8381]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-14/igt@kms_flip@flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#2587] / [i915#2672]) +2 similar issues [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#2587] / [i915#2672]) +1 similar issue [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#2672]) +2 similar issues [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#2672]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#2672]) +2 similar issues [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-12/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#2672] / [i915#3555]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [PASS][206] -> [FAIL][207] ([i915#6880]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][208] ([fdo#111825] / [i915#1825]) +19 similar issues [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][209] ([fdo#111825]) +7 similar issues [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#8708]) +8 similar issues [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#1825]) +5 similar issues [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][212] ([fdo#110189]) +8 similar issues [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#3023]) +13 similar issues [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html - shard-dg1: NOTRUN -> [SKIP][214] ([i915#3458]) +5 similar issues [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#3458]) +16 similar issues [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][216] ([fdo#109280]) +14 similar issues [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#8708]) +11 similar issues [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#6118]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-10/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8228]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8228]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-13/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8228]) +2 similar issues [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#6301]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-6/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8821]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-1/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8806]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-2/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#6953]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][226] ([i915#8292]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][227] ([i915#8292]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-15/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#5176]) +7 similar issues [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/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-scaler-with-clipping-clamping-rotation@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][229] ([fdo#109271]) +181 similar issues [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-snb2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html * igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#5176]) +11 similar issues [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#5176]) +5 similar issues [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#5235]) +7 similar issues [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][233] ([i915#5235]) +3 similar issues [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-dp-4: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#5235]) +15 similar issues [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-dp-4.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#5235]) +11 similar issues [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#658]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html - shard-dg1: NOTRUN -> [SKIP][237] ([i915#658]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-17/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr@dpms: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#1072]) +4 similar issues [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-11/igt@kms_psr@dpms.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#1072]) +2 similar issues [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-7/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#1072]) +2 similar issues [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-17/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][241] ([i915#5461] / [i915#658]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-rkl: NOTRUN -> [SKIP][242] ([i915#5461] / [i915#658]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#5289]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_selftest@drm_dp_mst: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#8661]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-1/igt@kms_selftest@drm_dp_mst.html * igt@kms_selftest@drm_format_helper: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#8661]) +1 similar issue [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-2/igt@kms_selftest@drm_format_helper.html * igt@kms_selftest@framebuffer: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#8661]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-2/igt@kms_selftest@framebuffer.html - shard-dg1: NOTRUN -> [SKIP][247] ([i915#8661]) +1 similar issue [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-19/igt@kms_selftest@framebuffer.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#4098]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-4/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg2: [PASS][249] -> [FAIL][250] ([IGT#2]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg2-11/igt@kms_sysfs_edid_timing.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-6/igt@kms_sysfs_edid_timing.html - shard-dg1: NOTRUN -> [FAIL][251] ([IGT#2] / [i915#6493]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-14/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#8623]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-13/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@universal-plane-pipe-c-functional: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#4070] / [i915#6768]) +5 similar issues [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-1/igt@kms_universal_plane@universal-plane-pipe-c-functional.html * igt@kms_vblank@pipe-d-query-forked-busy-hang: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#4070] / [i915#533] / [i915#6768]) +1 similar issue [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-6/igt@kms_vblank@pipe-d-query-forked-busy-hang.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#2437]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-1/igt@kms_writeback@writeback-check-output.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#2434]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-12/igt@perf@mi-rpc.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg1: [PASS][257] -> [FAIL][258] ([i915#5234]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg1-19/igt@perf_pmu@all-busy-idle-check-all.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-12/igt@perf_pmu@all-busy-idle-check-all.html - shard-mtlp: [PASS][259] -> [FAIL][260] ([i915#5234]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-2/igt@perf_pmu@all-busy-idle-check-all.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-5/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][261] ([i915#4349]) +3 similar issues [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#8850]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-12/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][263] ([i915#6806]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-1/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@rc6@runtime-pm-long-gt1: - shard-mtlp: [PASS][264] -> [SKIP][265] ([i915#8537]) +2 similar issues [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-2/igt@perf_pmu@rc6@runtime-pm-long-gt1.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-4/igt@perf_pmu@rc6@runtime-pm-long-gt1.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#3708]) +3 similar issues [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-16/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][267] ([fdo#109295] / [i915#3291] / [i915#3708]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-2/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#3708] / [i915#4077]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-17/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#3291] / [i915#3708]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-11/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-flip-hang: - shard-tglu: NOTRUN -> [SKIP][270] ([fdo#109295]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-4/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][271] ([fdo#109295] / [i915#3708]) +1 similar issue [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-7/igt@prime_vgem@fence-read-hang.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#4818]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-12/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@get-values-invalid-perfmon: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#2575]) +4 similar issues [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-17/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-rkl: NOTRUN -> [SKIP][274] ([fdo#109315]) +6 similar issues [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-1/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_cl@valid-submission: - shard-tglu: NOTRUN -> [SKIP][275] ([fdo#109315] / [i915#2575]) +3 similar issues [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-2/igt@v3d/v3d_submit_cl@valid-submission.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#2575]) +10 similar issues [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-10/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@v3d/v3d_wait_bo@unused-bo-0ns: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#2575]) +1 similar issue [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-1/igt@v3d/v3d_wait_bo@unused-bo-0ns.html * igt@vc4/vc4_perfmon@destroy-valid-perfmon: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#7711]) +8 similar issues [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-12/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html * igt@vc4/vc4_perfmon@get-values-invalid-pointer: - shard-tglu: NOTRUN -> [SKIP][279] ([i915#2575]) +2 similar issues [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-2/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html * igt@vc4/vc4_tiling@get-bad-handle: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#7711]) +2 similar issues [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-13/igt@vc4/vc4_tiling@get-bad-handle.html * igt@vc4/vc4_tiling@set-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#7711]) +1 similar issue [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-1/igt@vc4/vc4_tiling@set-bad-handle.html * igt@vc4/vc4_wait_bo@unused-bo-1ns: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#7711]) +3 similar issues [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-6/igt@vc4/vc4_wait_bo@unused-bo-1ns.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][283] ([i915#7742]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][285] ([i915#6268]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@hibernate: - shard-dg1: [ABORT][287] ([i915#7975] / [i915#8213]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg1-14/igt@gem_eio@hibernate.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-17/igt@gem_eio@hibernate.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-apl: [FAIL][289] ([i915#2842]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-apl4/igt@gem_exec_fair@basic-pace-solo@rcs0.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-apl3/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [FAIL][291] ([i915#2842]) -> [PASS][292] +2 similar issues [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_schedule@preempt-engines@ccs0: - shard-mtlp: [FAIL][293] ([i915#9119]) -> [PASS][294] +4 similar issues [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@ccs0.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-2/igt@gem_exec_schedule@preempt-engines@ccs0.html * igt@gem_exec_schedule@preempt-engines@rcs0: - shard-mtlp: [DMESG-FAIL][295] ([i915#8962] / [i915#9121]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@rcs0.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-2/igt@gem_exec_schedule@preempt-engines@rcs0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [ABORT][297] ([i915#7975] / [i915#8213]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-tglu-3/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [FAIL][299] ([i915#6268]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-5/igt@gem_userptr_blits@nohangcheck.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-5/igt@gem_userptr_blits@nohangcheck.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: [FAIL][301] ([i915#7069]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-4/igt@i915_hangman@gt-engine-hang@vcs0.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-5/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [INCOMPLETE][303] ([i915#6311]) -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][305] ([i915#1397]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-rkl-1/igt@i915_pm_rpm@dpms-lpsp.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [SKIP][307] ([i915#1397]) -> [PASS][308] +2 similar issues [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-12/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][309] ([i915#1397]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg2-3/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1: - shard-mtlp: [FAIL][311] ([i915#2521]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: [FAIL][313] ([i915#3743]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][315] ([i915#2346]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-mtlp: [FAIL][317] ([i915#2346]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][319] ([i915#79]) -> [PASS][320] +1 similar issue [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a3: - shard-dg2: [FAIL][321] ([fdo#103375]) -> [PASS][322] +2 similar issues [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg2-5/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-1/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html * igt@kms_flip@flip-vs-suspend@c-hdmi-a3: - shard-dg2: [INCOMPLETE][323] -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg2-5/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-1/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: [FAIL][325] ([i915#6880]) -> [PASS][326] +1 similar issue [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@perf_pmu@busy-double-start@vcs1: - shard-dg1: [FAIL][327] ([i915#4349]) -> [PASS][328] +2 similar issues [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg1-15/igt@perf_pmu@busy-double-start@vcs1.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-13/igt@perf_pmu@busy-double-start@vcs1.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-mtlp: [FAIL][329] ([i915#5234]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-8/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-5/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@perf_pmu@semaphore-busy@rcs0: - shard-mtlp: [FAIL][331] ([i915#7742]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-2/igt@perf_pmu@semaphore-busy@rcs0.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-5/igt@perf_pmu@semaphore-busy@rcs0.html * igt@sysfs_heartbeat_interval@mixed@ccs0: - shard-mtlp: [ABORT][333] ([i915#8552]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-4/igt@sysfs_heartbeat_interval@mixed@ccs0.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@ccs0.html * igt@sysfs_heartbeat_interval@mixed@vecs0: - shard-mtlp: [FAIL][335] ([i915#1731]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-4/igt@sysfs_heartbeat_interval@mixed@vecs0.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@vecs0.html * igt@sysfs_heartbeat_interval@nopreempt@ccs0: - shard-mtlp: [FAIL][337] ([i915#6015]) -> [PASS][338] +2 similar issues [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@ccs0.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-6/igt@sysfs_heartbeat_interval@nopreempt@ccs0.html #### Warnings #### * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-mtlp: [SKIP][339] ([fdo#109289]) -> [SKIP][340] ([i915#8403]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@kms_async_flips@crc@pipe-a-edp-1: - shard-mtlp: [DMESG-FAIL][341] ([i915#8561]) -> [DMESG-FAIL][342] ([i915#1982] / [i915#8561]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-mtlp-6/igt@kms_async_flips@crc@pipe-a-edp-1.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-mtlp-1/igt@kms_async_flips@crc@pipe-a-edp-1.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs: - shard-dg2: [FAIL][343] -> [SKIP][344] ([i915#3689] / [i915#5354]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg2-12/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-1/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs: - shard-dg2: [SKIP][345] ([i915#9197]) -> [SKIP][346] ([i915#3689] / [i915#5354]) +1 similar issue [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg2-12/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg2-11/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][347] ([i915#7116]) -> [SKIP][348] ([fdo#109300]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg1-14/igt@kms_content_protection@mei_interface.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-13/igt@kms_content_protection@mei_interface.html * igt@kms_flip@flip-vs-suspend@a-vga1: - shard-snb: [DMESG-WARN][349] ([i915#8841]) -> [DMESG-FAIL][350] ([fdo#103375]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-snb5/igt@kms_flip@flip-vs-suspend@a-vga1.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-snb7/igt@kms_flip@flip-vs-suspend@a-vga1.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][351] ([fdo#109285] / [i915#4098]) -> [SKIP][352] ([fdo#109285]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-rkl-4/igt@kms_force_connector_basic@force-load-detect.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][353] ([i915#4816]) -> [SKIP][354] ([i915#4070] / [i915#4816]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][355] ([i915#1072]) -> [SKIP][356] ([i915#1072] / [i915#4078]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7461/shard-dg1-19/igt@kms_psr@sprite_plane_onoff.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/shard-dg1-13/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). [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#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#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#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [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#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [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#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [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#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5464]: https://gitlab.freedesktop.org/drm/intel/issues/5464 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6311]: https://gitlab.freedesktop.org/drm/intel/issues/6311 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [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#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#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#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#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8537]: https://gitlab.freedesktop.org/drm/intel/issues/8537 [i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#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#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9119]: https://gitlab.freedesktop.org/drm/intel/issues/9119 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 [i915#9197]: https://gitlab.freedesktop.org/drm/intel/issues/9197 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7461 -> IGTPW_9701 CI-20190529: 20190529 CI_DRM_13583: f299d7585a085ee36999da219c292e265da35886 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9701: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/index.html IGT_7461: 6791bde9776179efd61ce46c645fbf6f0743a687 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9701/index.html [-- Attachment #2: Type: text/html, Size: 114648 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-09-01 11:07 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-01 3:24 [igt-dev] [i-g-t][PATCH v2 1/1] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests Sujaritha Sundaresan 2023-09-01 4:26 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,v2,1/1] " Patchwork 2023-09-01 4:52 ` [igt-dev] [i-g-t][PATCH v2 1/1] " Riana Tauro 2023-09-01 5:01 ` Sundaresan, Sujaritha 2023-09-01 4:57 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/1] " Patchwork 2023-09-01 5:15 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-09-01 11:07 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox