* [igt-dev] [PATCH i-g-t] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests
@ 2023-08-28 5:25 Sujaritha Sundaresan
2023-08-28 6:13 ` Sundaresan, Sujaritha
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Sujaritha Sundaresan @ 2023-08-28 5:25 UTC (permalink / raw)
To: igt-dev
Adding multi-gt support for rc6_residency subtests rc6_idle and
rc6_fence.
Signed-off-by: Sujaritha Sundaresan <sujaritha.sundaresan@intel.com>
---
tests/i915/i915_pm_rc6_residency.c | 31 +++++++++++++++++++-----------
1 file changed, 20 insertions(+), 11 deletions(-)
diff --git a/tests/i915/i915_pm_rc6_residency.c b/tests/i915/i915_pm_rc6_residency.c
index b266680ac..078ac4747 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);
@@ -559,11 +562,11 @@ igt_main
{
int i915 = -1;
const intel_ctx_t *ctx;
+ unsigned int dir, gt;
/* 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 {
--
2.25.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [igt-dev] [PATCH i-g-t] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests 2023-08-28 5:25 [igt-dev] [PATCH i-g-t] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests Sujaritha Sundaresan @ 2023-08-28 6:13 ` Sundaresan, Sujaritha 2023-08-28 17:07 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Sundaresan, Sujaritha @ 2023-08-28 6:13 UTC (permalink / raw) To: igt-dev Kindly ignore this patch. Some errors are present due to git issues. Wills end out a clean v2 once resolved -Suja On 8/28/2023 10:55 AM, Sujaritha Sundaresan wrote: > Adding multi-gt support for rc6_residency subtests rc6_idle and > rc6_fence. > > Signed-off-by: Sujaritha Sundaresan <sujaritha.sundaresan@intel.com> > --- > tests/i915/i915_pm_rc6_residency.c | 31 +++++++++++++++++++----------- > 1 file changed, 20 insertions(+), 11 deletions(-) > > diff --git a/tests/i915/i915_pm_rc6_residency.c b/tests/i915/i915_pm_rc6_residency.c > index b266680ac..078ac4747 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); > @@ -559,11 +562,11 @@ igt_main > { > int i915 = -1; > const intel_ctx_t *ctx; > + unsigned int dir, gt; > > /* 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 { ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: warning for tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests 2023-08-28 5:25 [igt-dev] [PATCH i-g-t] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests Sujaritha Sundaresan 2023-08-28 6:13 ` Sundaresan, Sujaritha @ 2023-08-28 17:07 ` Patchwork 2023-08-28 17:10 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-08-28 17:07 UTC (permalink / raw) To: Sundaresan, Sujaritha; +Cc: igt-dev == Series Details == Series: tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests URL : https://patchwork.freedesktop.org/series/122954/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/971717 for the overview. build-containers:build-debian has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/48103729): time="2023-08-28T17:04:50Z" level=fatal msg="Error determining repository tags: Invalid status code returned when fetching tags list 503 (Service Unavailable)" Building! STEP 1: FROM registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-minimal:commit-b4aa1bff12be125894dd99d73bd4081961235187 Getting image source signatures Copying blob sha256:2f92e8d0541551f215cc8116b6a6507a714a936f45b19286a6664467db837932 Copying config sha256:08904a47f4efcc161569a9b7f88c458fc6e3e85a2225132246af9cf5cc6c4e5b 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-08-28T17:05:20Z" level=warning msg="signal: killed" time="2023-08-28T17:05:20Z" 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:1693242321:step_script section_start:1693242321:cleanup_file_variables Cleaning up project directory and file based variables section_end:1693242321:cleanup_file_variables ERROR: Job failed: exit code 1 build-containers:build-debian-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/48103731): time="2023-08-28T16:55:26Z" level=fatal msg="Error determining repository tags: Get https://registry.freedesktop.org/v2/gfx-ci/igt-ci-tags/build-debian-arm64/tags/list?last=commit-18af6126b249a8ebbe7313a49854e4b9b370acb9&n=100: net/http: TLS handshake 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-08-28T16:55:31Z" level=warning msg="signal: killed" time="2023-08-28T16:55:31Z" 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:1693241731:step_script section_start:1693241731:cleanup_file_variables Cleaning up project directory and file based variables section_end:1693241732: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/48103730): time="2023-08-28T16:57:48Z" level=fatal msg="Error determining repository tags: Invalid status code returned when fetching tags list 503 (Service Unavailable)" 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-08-28T16:57:53Z" level=warning msg="signal: killed" time="2023-08-28T16:57:53Z" 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:1693241874:step_script section_start:1693241874:cleanup_file_variables Cleaning up project directory and file based variables section_end:1693241876: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/48103732): Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out b4aa1bff as detached HEAD (ref is intel/IGTPW_9669)... Skipping Git submodules setup section_end:1693240966:get_sources section_start:1693240966: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": Get https://gitlab.freedesktop.org/jwt/auth?account=gitlab-ci-token&service=container_registry: dial tcp 147.75.198.156:443: i/o timeout section_end:1693240997:step_script section_start:1693240997:cleanup_file_variables Cleaning up project directory and file based variables section_end:1693240997:cleanup_file_variables ERROR: Job failed: exit code 1 build-containers:build-fedora has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/48103733): time="2023-08-28T16:57:16Z" level=fatal msg="Error determining repository tags: Invalid status code returned when fetching tags list 503 (Service Unavailable)" Building! STEP 1: FROM fedora:31 Getting image source signatures Copying blob sha256:854946d575a439a894349addd141568875d7c1e673d3286b08250f3dde002e6a Copying config sha256:7e94ed77b448a8d2ff08b92d3ca743e4e862c744892d6886c73487581eb5863a Writing manifest to image destination Storing signatures STEP 2: RUN dnf install -y gcc flex bison libatomic meson ninja-build xdotool 'pkgconfig(libdrm)' 'pkgconfig(pciaccess)' 'pkgconfig(libkmod)' 'pkgconfig(libprocps)' 'pkgconfig(libunwind)' 'pkgconfig(libdw)' 'pkgconfig(pixman-1)' 'pkgconfig(valgrind)' 'pkgconfig(cairo)' 'pkgconfig(libudev)' 'pkgconfig(glib-2.0)' 'pkgconfig(gsl)' 'pkgconfig(alsa)' 'pkgconfig(xmlrpc)' 'pkgconfig(xmlrpc_util)' 'pkgconfig(xmlrpc_client)' 'pkgconfig(json-c)' 'pkgconfig(gtk-doc)' 'pkgconfig(xv)' 'pkgconfig(xrandr)' python3-docutils error running container: error creating container for [/bin/sh -c dnf install -y gcc flex bison libatomic meson ninja-build xdotool 'pkgconfig(libdrm)' 'pkgconfig(pciaccess)' 'pkgconfig(libkmod)' 'pkgconfig(libprocps)' 'pkgconfig(libunwind)' 'pkgconfig(libdw)' 'pkgconfig(pixman-1)' 'pkgconfig(valgrind)' 'pkgconfig(cairo)' 'pkgconfig(libudev)' 'pkgconfig(glib-2.0)' 'pkgconfig(gsl)' 'pkgconfig(alsa)' 'pkgconfig(xmlrpc)' 'pkgconfig(xmlrpc_util)' 'pkgconfig(xmlrpc_client)' 'pkgconfig(json-c)' 'pkgconfig(gtk-doc)' 'pkgconfig(xv)' 'pkgconfig(xrandr)' python3-docutils]: time="2023-08-28T16:57:22Z" level=warning msg="signal: killed" time="2023-08-28T16:57:22Z" 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 dnf install -y gcc flex bison libatomic meson ninja-build xdotool 'pkgconfig(libdrm)' 'pkgconfig(pciaccess)' 'pkgconfig(libkmod)' 'pkgconfig(libprocps)' 'pkgconfig(libunwind)' 'pkgconfig(libdw)' 'pkgconfig(pixman-1)' 'pkgconfig(valgrind)' 'pkgconfig(cairo)' 'pkgconfig(libudev)' 'pkgconfig(glib-2.0)' 'pkgconfig(gsl)' 'pkgconfig(alsa)' 'pkgconfig(xmlrpc)' 'pkgconfig(xmlrpc_util)' 'pkgconfig(xmlrpc_client)' 'pkgconfig(json-c)' 'pkgconfig(gtk-doc)' 'pkgconfig(xv)' 'pkgconfig(xrandr)' python3-docutils": error while running runtime: exit status 1 section_end:1693241843:step_script section_start:1693241843:cleanup_file_variables Cleaning up project directory and file based variables section_end:1693241843:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/971717 ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests 2023-08-28 5:25 [igt-dev] [PATCH i-g-t] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests Sujaritha Sundaresan 2023-08-28 6:13 ` Sundaresan, Sujaritha 2023-08-28 17:07 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork @ 2023-08-28 17:10 ` Patchwork 2023-08-28 17:16 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-08-28 19:16 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-08-28 17:10 UTC (permalink / raw) To: Sundaresan, Sujaritha; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4012 bytes --] == Series Details == Series: tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests URL : https://patchwork.freedesktop.org/series/122954/ State : success == Summary == CI Bug Log - changes from XEIGT_7454_BAT -> XEIGTPW_9669_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 4) ------------------------------ Additional (2): bat-pvc-2 bat-dg2-oem2 Known issues ------------ Here are the changes found in XEIGTPW_9669_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-oem2: NOTRUN -> [SKIP][1] ([i915#5274]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9669/bat-dg2-oem2/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - bat-dg2-oem2: NOTRUN -> [FAIL][2] ([Intel XE#400]) +2 similar issues [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9669/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html * igt@kms_psr@primary_page_flip: - bat-dg2-oem2: NOTRUN -> [SKIP][3] ([i915#1072]) +2 similar issues [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9669/bat-dg2-oem2/igt@kms_psr@primary_page_flip.html * igt@xe_compute@compute-square: - bat-dg2-oem2: NOTRUN -> [SKIP][4] ([Intel XE#252]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9669/bat-dg2-oem2/igt@xe_compute@compute-square.html * igt@xe_exec_fault_mode@many-basic: - bat-dg2-oem2: NOTRUN -> [SKIP][5] ([Intel XE#288]) +17 similar issues [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9669/bat-dg2-oem2/igt@xe_exec_fault_mode@many-basic.html * igt@xe_huc_copy@huc_copy: - bat-dg2-oem2: NOTRUN -> [SKIP][6] ([Intel XE#255]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9669/bat-dg2-oem2/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@bo: - bat-dg2-oem2: NOTRUN -> [SKIP][7] ([Intel XE#483]) +2 similar issues [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9669/bat-dg2-oem2/igt@xe_live_ktest@bo.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/252 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/389 [Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400 [Intel XE#482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/482 [Intel XE#483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/483 [Intel XE#526]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/526 [Intel XE#531]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/531 [Intel XE#532]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/532 [Intel XE#533]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/533 [Intel XE#535]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/535 [Intel XE#536]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/536 [Intel XE#537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/537 [Intel XE#538]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/538 [Intel XE#539]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/539 [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540 [Intel XE#541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/541 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 Build changes ------------- * IGT: IGT_7454 -> IGTPW_9669 IGTPW_9669: 9669 IGT_7454: 7454 xe-340-c77796cf84361b4716839141f2e48de2bf7f4bd5: c77796cf84361b4716839141f2e48de2bf7f4bd5 [-- Attachment #2: Type: text/html, Size: 3694 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests 2023-08-28 5:25 [igt-dev] [PATCH i-g-t] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests Sujaritha Sundaresan ` (2 preceding siblings ...) 2023-08-28 17:10 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork @ 2023-08-28 17:16 ` Patchwork 2023-08-28 19:16 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-08-28 17:16 UTC (permalink / raw) To: Sundaresan, Sujaritha; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8022 bytes --] == Series Details == Series: tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests URL : https://patchwork.freedesktop.org/series/122954/ State : success == Summary == CI Bug Log - changes from CI_DRM_13571 -> IGTPW_9669 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/index.html Participating hosts (38 -> 38) ------------------------------ Additional (1): bat-adlp-11 Missing (1): fi-snb-2520m New tests --------- New tests have been introduced between CI_DRM_13571 and IGTPW_9669: ### New IGT tests (7) ### * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-dp-5: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-dp-5: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-dp-5: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-5: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-b-dp-5: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-5: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@read-crc@pipe-b-dp-5: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9669 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-adlp-11: NOTRUN -> [SKIP][1] ([i915#7456]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/bat-adlp-11/igt@debugfs_test@basic-hwmon.html * igt@gem_busy@busy@all-engines: - bat-mtlp-8: [PASS][2] -> [DMESG-FAIL][3] ([i915#9121]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/bat-mtlp-8/igt@gem_busy@busy@all-engines.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/bat-mtlp-8/igt@gem_busy@busy@all-engines.html * igt@gem_tiled_pread_basic: - bat-adlp-11: NOTRUN -> [SKIP][4] ([i915#3282]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/bat-adlp-11/igt@gem_tiled_pread_basic.html * igt@i915_pm_backlight@basic-brightness: - bat-adlp-11: NOTRUN -> [SKIP][5] ([i915#3546] / [i915#7561]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/bat-adlp-11/igt@i915_pm_backlight@basic-brightness.html * igt@i915_pm_backlight@basic-brightness@edp-1: - bat-rplp-1: NOTRUN -> [ABORT][6] ([i915#7077] / [i915#8668]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/bat-rplp-1/igt@i915_pm_backlight@basic-brightness@edp-1.html * igt@i915_pm_rpm@basic-pci-d3-state: - bat-adlp-11: NOTRUN -> [ABORT][7] ([i915#7977] / [i915#8469] / [i915#8668]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/bat-adlp-11/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_suspend@basic-s3-without-i915: - bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#6645]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adlp-11: NOTRUN -> [SKIP][9] ([i915#4103]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/bat-adlp-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-adlp-11: NOTRUN -> [SKIP][10] ([i915#4093]) +3 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/bat-adlp-11/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_psr@primary_mmap_gtt: - bat-rplp-1: NOTRUN -> [SKIP][11] ([i915#1072]) +2 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html * igt@kms_psr@primary_page_flip: - bat-adlp-6: NOTRUN -> [ABORT][12] ([i915#8442] / [i915#8668]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/bat-adlp-6/igt@kms_psr@primary_page_flip.html - bat-adlp-11: NOTRUN -> [SKIP][13] ([i915#1072]) +3 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/bat-adlp-11/igt@kms_psr@primary_page_flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-rplp-1: NOTRUN -> [SKIP][14] ([i915#3555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html - bat-adlp-11: NOTRUN -> [SKIP][15] ([i915#3555]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/bat-adlp-11/igt@kms_setmode@basic-clone-single-crtc.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@lmem0: - bat-dg2-9: [INCOMPLETE][16] ([i915#6311]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@i915_selftest@live@requests: - bat-mtlp-8: [ABORT][18] ([i915#7982] / [i915#8865]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/bat-mtlp-8/igt@i915_selftest@live@requests.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-edp-1: - bat-adlp-6: [ABORT][20] ([i915#7977] / [i915#8469] / [i915#8668]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/bat-adlp-6/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-edp-1.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/bat-adlp-6/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-edp-1.html #### Warnings #### * igt@kms_psr@primary_page_flip: - bat-rplp-1: [ABORT][22] ([i915#8442] / [i915#8668] / [i915#8860]) -> [SKIP][23] ([i915#1072]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/bat-rplp-1/igt@kms_psr@primary_page_flip.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/bat-rplp-1/igt@kms_psr@primary_page_flip.html [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#4093]: https://gitlab.freedesktop.org/drm/intel/issues/4093 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#6311]: https://gitlab.freedesktop.org/drm/intel/issues/6311 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977 [i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982 [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 [i915#8860]: https://gitlab.freedesktop.org/drm/intel/issues/8860 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7454 -> IGTPW_9669 CI-20190529: 20190529 CI_DRM_13571: d3f0e020609215d9097f1b1fad5a13ea0b37548e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9669: 9669 IGT_7454: 7454 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/index.html [-- Attachment #2: Type: text/html, Size: 9932 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests 2023-08-28 5:25 [igt-dev] [PATCH i-g-t] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests Sujaritha Sundaresan ` (3 preceding siblings ...) 2023-08-28 17:16 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-08-28 19:16 ` Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-08-28 19:16 UTC (permalink / raw) To: Sundaresan, Sujaritha; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 84340 bytes --] == Series Details == Series: tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests URL : https://patchwork.freedesktop.org/series/122954/ State : success == Summary == CI Bug Log - changes from CI_DRM_13571_full -> IGTPW_9669_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/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_9669_full: ### IGT changes ### #### Possible regressions #### * {igt@i915_pm_rc6_residency@rc6-fence@gt0} (NEW): - shard-tglu: NOTRUN -> [WARN][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-fence@gt0.html * {igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0} (NEW): - shard-apl: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-apl1/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html - shard-glk: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-glk6/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html - shard-snb: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-snb2/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_9669/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html - shard-mtlp: NOTRUN -> [FAIL][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-4/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html New tests --------- New tests have been introduced between CI_DRM_13571_full and IGTPW_9669_full: ### New IGT tests (4) ### * igt@i915_pm_rc6_residency@rc6-fence@gt0: - Statuses : 3 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 : 5 fail(s) - Exec time: [0.0] s * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - Statuses : 5 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9669_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8411]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-3/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-rkl: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-7/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][9] ([i915#6122]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-1/igt@api_intel_bb@render-ccs.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +19 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-11/igt@drm_fdinfo@busy-idle@bcs0.html * igt@feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][11] ([fdo#111827]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-2/igt@feature_discovery@chamelium.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][12] ([i915#6311] / [i915#7297]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][13] -> [FAIL][14] ([i915#6268]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-hostile: - shard-snb: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#1099]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-snb2/igt@gem_ctx_persistence@engines-hostile.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [PASS][16] -> [FAIL][17] ([i915#2410]) +5 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-6/igt@gem_ctx_persistence@engines-hostile@vcs0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-3/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-3/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@saturated-hostile@vecs0: - shard-mtlp: [PASS][19] -> [FAIL][20] ([i915#7816]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-2/igt@gem_ctx_persistence@saturated-hostile@vecs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-1/igt@gem_ctx_persistence@saturated-hostile@vecs0.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#280]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-8/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@in-flight-suspend: - shard-dg2: NOTRUN -> [FAIL][22] ([fdo#103375]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-1/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@kms: - shard-dg1: [PASS][23] -> [FAIL][24] ([i915#5784]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg1-13/igt@gem_eio@kms.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-17/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg2: [PASS][25] -> [FAIL][26] ([i915#5784]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-6/igt@gem_eio@reset-stress.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-5/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-sync: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4771]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-6/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-2/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_capture@pi@ccs0: - shard-mtlp: [PASS][29] -> [FAIL][30] ([i915#7765]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-8/igt@gem_exec_capture@pi@ccs0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-2/igt@gem_exec_capture@pi@ccs0.html * igt@gem_exec_capture@pi@rcs0: - shard-mtlp: [PASS][31] -> [FAIL][32] ([i915#4475]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-8/igt@gem_exec_capture@pi@rcs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-2/igt@gem_exec_capture@pi@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-15/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: NOTRUN -> [FAIL][34] ([i915#2842]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-1/igt@gem_exec_fair@basic-throttle@rcs0.html - shard-tglu: NOTRUN -> [FAIL][35] ([i915#2842]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-9/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812]) +2 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-1/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +4 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-1/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#7697]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-2/igt@gem_exec_gttfill@multigpu-basic.html - shard-tglu: NOTRUN -> [SKIP][39] ([i915#7697]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-7/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@secure-non-root: - shard-tglu: NOTRUN -> [SKIP][40] ([fdo#112283]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-5/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281]) +3 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-noreloc.html - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +2 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-13/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +13 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-12/igt@gem_exec_reloc@basic-gtt-wc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3281]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-5/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-12/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [PASS][46] -> [INCOMPLETE][47] ([i915#6311]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-10/igt@gem_exec_suspend@basic-s0@smem.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-10/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg1: [PASS][48] -> [ABORT][49] ([i915#7975] / [i915#8213]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg1-18/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4860]) +1 similar issue [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-1/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_gtt_cpu_tlb: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4077]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-4/igt@gem_gtt_cpu_tlb.html * igt@gem_lmem_swapping@random-engines: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-1/igt@gem_lmem_swapping@random-engines.html - shard-tglu: NOTRUN -> [SKIP][53] ([i915#4613]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-2/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-random: - shard-apl: NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#4613]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-apl6/igt@gem_lmem_swapping@verify-random.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4613]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-3/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#8289]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-1/igt@gem_media_fill@media-fill.html * igt@gem_mmap@basic: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-13/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +13 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-5/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_wc@read: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4083]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-6/igt@gem_mmap_wc@read.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +3 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-2/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +6 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-1/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3282]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-6/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pwrite@basic-random: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282]) +2 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-1/igt@gem_pwrite@basic-random.html * igt@gem_pxp@create-regular-context-2: - shard-apl: NOTRUN -> [SKIP][64] ([fdo#109271]) +50 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-apl3/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4270]) +3 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-1/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#4270]) +1 similar issue [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-6/igt@gem_pxp@verify-pxp-stale-ctx-execution.html - shard-tglu: NOTRUN -> [SKIP][67] ([i915#4270]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-2/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8428]) +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_softpin@noreloc-s3: - shard-dg2: [PASS][69] -> [FAIL][70] ([fdo#103375]) +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-3/igt@gem_softpin@noreloc-s3.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-5/igt@gem_softpin@noreloc-s3.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][71] ([i915#5889]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-6/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4079]) +2 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-12/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3297] / [i915#4880]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-13/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3297] / [i915#4880]) +2 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297]) +2 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-5/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@vma-merge: - shard-rkl: NOTRUN -> [FAIL][77] ([i915#3318]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-1/igt@gem_userptr_blits@vma-merge.html - shard-dg1: NOTRUN -> [FAIL][78] ([i915#3318]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-19/igt@gem_userptr_blits@vma-merge.html - shard-tglu: NOTRUN -> [FAIL][79] ([i915#3318]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-6/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_linear_blits: - shard-rkl: NOTRUN -> [SKIP][80] ([fdo#109289]) +2 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-4/igt@gen3_render_linear_blits.html - shard-dg1: NOTRUN -> [SKIP][81] ([fdo#109289]) +2 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-18/igt@gen3_render_linear_blits.html - shard-tglu: NOTRUN -> [SKIP][82] ([fdo#109289]) +2 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-10/igt@gen3_render_linear_blits.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#2856]) +4 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-11/igt@gen9_exec_parse@allowed-all.html - shard-rkl: NOTRUN -> [SKIP][84] ([i915#2527]) +2 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-2/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#2527]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-19/igt@gen9_exec_parse@bb-start-cmd.html - shard-tglu: NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-6/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@unaligned-jump: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#2856]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-2/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][88] -> [DMESG-WARN][89] ([i915#7061] / [i915#8617]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#658]) +1 similar issue [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-1/igt@i915_pm_dc@dc5-psr.html - shard-dg1: NOTRUN -> [SKIP][91] ([i915#658]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-13/igt@i915_pm_dc@dc5-psr.html - shard-tglu: NOTRUN -> [SKIP][92] ([i915#658]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-4/igt@i915_pm_dc@dc5-psr.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#8399]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-dg1: [PASS][94] -> [SKIP][95] ([i915#1937]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg1-19/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-16/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#1397]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html - shard-tglu: NOTRUN -> [SKIP][97] ([fdo#111644] / [i915#1397]) +1 similar issue [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-10/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-dg1: [PASS][98] -> [SKIP][99] ([i915#1397]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg1-14/igt@i915_pm_rpm@modeset-non-lpsp.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][100] -> [SKIP][101] ([i915#1397]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-11/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-12/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#6621]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-12/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@min-max-config-idle: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#6621]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-2/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#6188]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-2/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_suspend@sysfs-reader: - shard-snb: NOTRUN -> [DMESG-WARN][105] ([i915#8841]) +4 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-snb2/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4212]) +1 similar issue [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-2/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_async_flips@invalid-async-flip: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#6228]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-4/igt@kms_async_flips@invalid-async-flip.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#6229]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-7/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#1769] / [i915#3555]) +1 similar issue [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#5286]) +2 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5286]) +1 similar issue [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-19/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][112] ([fdo#111615] / [i915#5286]) +1 similar issue [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: [PASS][113] -> [FAIL][114] ([i915#3743]) +3 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][115] ([fdo#111614] / [i915#3638]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][116] ([fdo#111614]) +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-3/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][117] ([fdo#111614]) +2 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#5190]) +13 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][119] ([fdo#111615]) +2 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5190]) +5 similar issues [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][121] ([fdo#110723]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - shard-tglu: NOTRUN -> [SKIP][123] ([fdo#111615]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#2705]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-5/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3734] / [i915#5354] / [i915#6095]) +1 similar issue [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_ccs.html - shard-dg1: NOTRUN -> [SKIP][126] ([i915#3689] / [i915#5354] / [i915#6095]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-18/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#5354]) +52 similar issues [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-11/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#5354] / [i915#6095]) +6 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-8/igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_mtl_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#5354] / [i915#6095]) +4 similar issues [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-1/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#3689] / [i915#5354] / [i915#6095]) +2 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-2/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#3689] / [i915#5354]) +12 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-1/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#6095]) +11 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-8/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-1/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][134] ([fdo#109271] / [i915#3886]) +1 similar issue [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-apl6/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-4/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#3689] / [i915#3886] / [i915#5354]) +9 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-10/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-primary-basic-4_tiled_mtl_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#5354] / [i915#6095]) +3 similar issues [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-17/igt@kms_ccs@pipe-d-crc-primary-basic-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#5354]) +10 similar issues [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-2/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#7213] / [i915#9010]) +3 similar issues [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-8/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#4087]) +3 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][141] ([fdo#111827]) +2 similar issues [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-8/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@degamma: - shard-rkl: NOTRUN -> [SKIP][142] ([fdo#111827]) +1 similar issue [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-6/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#7828]) +2 similar issues [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-1/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#7828]) +10 similar issues [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-11/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#7828]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd.html - shard-tglu: NOTRUN -> [SKIP][146] ([i915#7828]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-5/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#7828]) +2 similar issues [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][148] ([i915#7173]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#3299]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#7118]) +2 similar issues [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-3/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#3555]) +1 similar issue [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][152] ([fdo#109279] / [i915#3359]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-tglu: NOTRUN -> [SKIP][153] ([fdo#109279] / [i915#3359]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#3359]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-dg1: NOTRUN -> [SKIP][155] ([i915#3359]) +1 similar issue [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-tglu: NOTRUN -> [SKIP][156] ([i915#3359]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3359]) +1 similar issue [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#8814]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#3359]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-apl: NOTRUN -> [SKIP][160] ([fdo#109271] / [fdo#111767]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-apl4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-glk: [PASS][161] -> [FAIL][162] ([i915#72]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-glk5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-glk3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#4103] / [i915#4213]) +1 similar issue [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-12/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-mtlp: [PASS][164] -> [FAIL][165] ([i915#8248]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-5/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-8/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][166] ([fdo#109274]) +1 similar issue [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-rkl: NOTRUN -> [SKIP][167] ([fdo#111767] / [fdo#111825]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html - shard-dg1: NOTRUN -> [SKIP][168] ([fdo#111767] / [fdo#111825]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-14/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html - shard-tglu: NOTRUN -> [SKIP][169] ([fdo#109274] / [fdo#111767]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][170] ([fdo#109274] / [i915#5354]) +5 similar issues [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3546]) +1 similar issue [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#4103]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-4/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][173] ([i915#8827]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-4/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#8588]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-12/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#8812]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#3840]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-5/igt@kms_dsc@dsc-basic.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][177] ([fdo#109274] / [i915#3637] / [i915#3966]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-8/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-snb: NOTRUN -> [SKIP][178] ([fdo#109271] / [fdo#111767]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-snb5/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#8381]) +1 similar issue [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-8/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning: - shard-dg2: NOTRUN -> [SKIP][180] ([fdo#109274]) +7 similar issues [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][181] ([fdo#111825]) +6 similar issues [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-6/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3637]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-3/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][183] ([fdo#109274] / [i915#3637]) +1 similar issue [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-8/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-panning-interruptible@b-vga1: - shard-snb: [PASS][184] -> [ABORT][185] ([i915#8865]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-snb6/igt@kms_flip@flip-vs-panning-interruptible@b-vga1.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-snb7/igt@kms_flip@flip-vs-panning-interruptible@b-vga1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#2672]) +2 similar issues [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][187] ([i915#2587] / [i915#2672]) +1 similar issue [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][188] ([i915#2587] / [i915#2672]) +1 similar issue [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#2672]) +3 similar issues [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#8810]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#2672]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-dg2: [PASS][192] -> [FAIL][193] ([i915#6880]) +2 similar issues [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#8708]) +19 similar issues [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#1825]) +7 similar issues [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#8708]) +3 similar issues [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][197] ([fdo#111825]) +10 similar issues [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html - shard-tglu: NOTRUN -> [SKIP][198] ([fdo#109280]) +7 similar issues [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][199] ([fdo#111825] / [i915#1825]) +15 similar issues [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][200] ([fdo#110189]) +4 similar issues [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#3458]) +20 similar issues [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-12/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#8708]) +4 similar issues [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3023]) +9 similar issues [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#8228]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-14/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8228]) +1 similar issue [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-2/igt@kms_hdr@invalid-metadata-sizes.html - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8228]) +1 similar issue [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-1/igt@kms_hdr@invalid-metadata-sizes.html - shard-tglu: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#8228]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-6/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#4816]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][209] ([fdo#109289]) +3 similar issues [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-2/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-2: - shard-dg2: NOTRUN -> [FAIL][210] ([i915#8292]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-2.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][211] ([i915#8292]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][212] ([i915#8292]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-16/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#5176]) +7 similar issues [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#5176]) +7 similar issues [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#5176]) +3 similar issues [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-dp-2: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#5235]) +19 similar issues [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-dp-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][217] ([fdo#109271]) +167 similar issues [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-snb4/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#5235]) +3 similar issues [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#5235]) +5 similar issues [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#5235]) +11 similar issues [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#6524] / [i915#6805]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][222] ([fdo#111068] / [i915#658]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][223] ([fdo#111068] / [i915#658]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-13/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html - shard-tglu: NOTRUN -> [SKIP][224] ([fdo#111068] / [i915#658]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-4/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#658]) +2 similar issues [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-12/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-apl: NOTRUN -> [SKIP][226] ([fdo#109271] / [i915#658]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-apl1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_primary_blt: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#1072]) +7 similar issues [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-2/igt@kms_psr@psr2_primary_blt.html * igt@kms_psr@psr2_sprite_mmap_cpu: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#1072]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-1/igt@kms_psr@psr2_sprite_mmap_cpu.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#4235]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-1/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#4235] / [i915#5190]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][231] ([fdo#111615] / [i915#5289]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#4235]) +1 similar issue [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-3/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][233] ([i915#3555]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-full-aspect.html - shard-dg1: NOTRUN -> [SKIP][234] ([i915#3555]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-14/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_scaling_modes@scaling-mode-none: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#3555]) +5 similar issues [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-11/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_selftest@drm_damage: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#8661]) +1 similar issue [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-10/igt@kms_selftest@drm_damage.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][237] ([i915#5465]) +1 similar issue [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-snb2/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][238] ([IGT#2]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-8/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#8623]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-dg2: NOTRUN -> [SKIP][240] ([fdo#109309]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-12/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-c-ts-continuation-idle: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#4070] / [i915#6768]) +1 similar issue [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-1/igt@kms_vblank@pipe-c-ts-continuation-idle.html * igt@kms_vblank@pipe-d-wait-forked-busy: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#4070] / [i915#533] / [i915#6768]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-7/igt@kms_vblank@pipe-d-wait-forked-busy.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#2437]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-6/igt@kms_writeback@writeback-check-output.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#8516]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-1/igt@perf_pmu@rc6@other-idle-gt0.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [PASS][245] -> [FAIL][246] ([i915#4349]) +2 similar issues [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-13/igt@perf_pmu@semaphore-busy@vcs1.html - shard-mtlp: [PASS][247] -> [FAIL][248] ([i915#4349]) +5 similar issues [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-7/igt@perf_pmu@semaphore-busy@vcs1.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-2/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: [PASS][249] -> [FAIL][250] ([i915#4349]) +7 similar issues [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-10/igt@perf_pmu@semaphore-busy@vecs0.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-1/igt@perf_pmu@semaphore-busy@vecs0.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][251] ([fdo#109295] / [i915#3708]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-2/igt@prime_vgem@fence-read-hang.html - shard-dg1: NOTRUN -> [SKIP][252] ([i915#3708]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-17/igt@prime_vgem@fence-read-hang.html - shard-tglu: NOTRUN -> [SKIP][253] ([fdo#109295]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-8/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#3708]) +1 similar issue [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-3/igt@prime_vgem@fence-write-hang.html * igt@sysfs_heartbeat_interval@nopreempt@vcs0: - shard-mtlp: [PASS][255] -> [FAIL][256] ([i915#6015]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-5/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-6/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#2575]) +13 similar issues [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-3/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_perfmon@create-perfmon-0: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#2575]) +7 similar issues [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-7/igt@v3d/v3d_perfmon@create-perfmon-0.html * igt@v3d/v3d_submit_csd@bad-bo: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#2575]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-14/igt@v3d/v3d_submit_csd@bad-bo.html * igt@v3d/v3d_wait_bo@bad-pad: - shard-rkl: NOTRUN -> [SKIP][260] ([fdo#109315]) +1 similar issue [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-2/igt@v3d/v3d_wait_bo@bad-pad.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#7711]) +7 similar issues [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-12/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_perfmon@create-single-perfmon: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#7711]) +1 similar issue [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-4/igt@vc4/vc4_perfmon@create-single-perfmon.html * igt@vc4/vc4_purgeable_bo@mark-purgeable: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#2575]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-5/igt@vc4/vc4_purgeable_bo@mark-purgeable.html * igt@vc4/vc4_tiling@set-get: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#7711]) +1 similar issue [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-4/igt@vc4/vc4_tiling@set-get.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][265] ([i915#7742]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][267] ([i915#6311] / [i915#7297]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_eio@in-flight-contexts-immediate: - shard-mtlp: [ABORT][269] ([i915#8503]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-2/igt@gem_eio@in-flight-contexts-immediate.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-5/igt@gem_eio@in-flight-contexts-immediate.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][271] ([i915#2842]) -> [PASS][272] +1 similar issue [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-rkl: [FAIL][273] ([i915#2842]) -> [PASS][274] +1 similar issue [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [FAIL][275] ([i915#2842]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][277] ([i915#5493]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [FAIL][279] ([i915#8691]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-5/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [SKIP][281] ([i915#4281]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-tglu-5/igt@i915_pm_dc@dc9-dpms.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-mtlp: [SKIP][283] ([i915#8403]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-6/igt@i915_pm_rc6_residency@rc6-accuracy.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][285] ([i915#1397]) -> [PASS][286] +1 similar issue [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-rkl-4/igt@i915_pm_rpm@dpms-lpsp.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][287] ([i915#1397]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-2/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg1: [SKIP][289] ([i915#1397]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-16/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1: - shard-mtlp: [FAIL][291] ([i915#2521]) -> [PASS][292] [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-3/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-async-flip: - shard-mtlp: [FAIL][293] ([i915#3743]) -> [PASS][294] +1 similar issue [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][295] ([i915#2346]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: - shard-mtlp: [FAIL][297] ([i915#1623]) -> [PASS][298] +1 similar issue [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-6/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-7/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html * igt@kms_vblank@pipe-c-query-forked-busy-hang: - shard-mtlp: [DMESG-WARN][299] ([i915#2017]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-2/igt@kms_vblank@pipe-c-query-forked-busy-hang.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-6/igt@kms_vblank@pipe-c-query-forked-busy-hang.html * igt@perf_pmu@render-node-busy-idle@vcs1: - shard-dg1: [FAIL][301] ([i915#4349]) -> [PASS][302] +1 similar issue [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg1-13/igt@perf_pmu@render-node-busy-idle@vcs1.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-17/igt@perf_pmu@render-node-busy-idle@vcs1.html - shard-mtlp: [FAIL][303] ([i915#4349]) -> [PASS][304] +1 similar issue [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-6/igt@perf_pmu@render-node-busy-idle@vcs1.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-5/igt@perf_pmu@render-node-busy-idle@vcs1.html * igt@sysfs_heartbeat_interval@nopreempt@bcs0: - shard-mtlp: [FAIL][305] ([i915#6015]) -> [PASS][306] +2 similar issues [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-5/igt@sysfs_heartbeat_interval@nopreempt@bcs0.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-6/igt@sysfs_heartbeat_interval@nopreempt@bcs0.html * igt@sysfs_preempt_timeout@timeout@vecs0: - shard-mtlp: [TIMEOUT][307] ([i915#8521]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-2/igt@sysfs_preempt_timeout@timeout@vecs0.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-6/igt@sysfs_preempt_timeout@timeout@vecs0.html #### Warnings #### * igt@kms_content_protection@content_type_change: - shard-dg2: [SKIP][309] ([i915#7118]) -> [SKIP][310] ([i915#7118] / [i915#7162]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-8/igt@kms_content_protection@content_type_change.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-12/igt@kms_content_protection@content_type_change.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][311] ([i915#7116]) -> [SKIP][312] ([fdo#109300]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg1-16/igt@kms_content_protection@mei_interface.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-13/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [FAIL][313] ([i915#2346]) -> [DMESG-FAIL][314] ([i915#2017] / [i915#5954]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: - shard-snb: [DMESG-FAIL][315] ([fdo#103375]) -> [DMESG-WARN][316] ([i915#8841]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-snb7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-snb5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html * igt@kms_psr@primary_mmap_gtt: - shard-dg1: [SKIP][317] ([i915#1072]) -> [SKIP][318] ([i915#1072] / [i915#4078]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg1-17/igt@kms_psr@primary_mmap_gtt.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-16/igt@kms_psr@primary_mmap_gtt.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][319] ([i915#1072] / [i915#4078]) -> [SKIP][320] ([i915#1072]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg1-18/igt@kms_psr@sprite_plane_onoff.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg1-15/igt@kms_psr@sprite_plane_onoff.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [INCOMPLETE][321] ([i915#5493]) -> [CRASH][322] ([i915#7331]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13571/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [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#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [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#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#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#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [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#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#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#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6311]: https://gitlab.freedesktop.org/drm/intel/issues/6311 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7765]: https://gitlab.freedesktop.org/drm/intel/issues/7765 [i915#7816]: https://gitlab.freedesktop.org/drm/intel/issues/7816 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248 [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#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8503]: https://gitlab.freedesktop.org/drm/intel/issues/8503 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7454 -> IGTPW_9669 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13571: d3f0e020609215d9097f1b1fad5a13ea0b37548e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9669: 9669 IGT_7454: 7454 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9669/index.html [-- Attachment #2: Type: text/html, Size: 103677 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-08-28 19:16 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-08-28 5:25 [igt-dev] [PATCH i-g-t] tests/i915: Add multi-gt support for rc6_idle and rc6_fence tests Sujaritha Sundaresan 2023-08-28 6:13 ` Sundaresan, Sujaritha 2023-08-28 17:07 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork 2023-08-28 17:10 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork 2023-08-28 17:16 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-08-28 19:16 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox