* [igt-dev] [PATCH i-g-t v2 0/2] Extend i915_pm_rc6_residency
@ 2022-06-21 13:45 Riana Tauro
2022-06-21 13:45 ` [igt-dev] [PATCH i-g-t v2 1/2] tests/i915/pm_rc6_residency: Refactoring intel_ctx_t to igt_fixture Riana Tauro
` (7 more replies)
0 siblings, 8 replies; 19+ messages in thread
From: Riana Tauro @ 2022-06-21 13:45 UTC (permalink / raw)
To: igt-dev
Refactor code to move intel_ctx_create_all_physical() and
intel_ctx_destroy() to igt_fixture to be used to by tests.
Extend rc6_idle to run on single instance of every engines
Rev2: add dynamic subtests and refactor code (Anshuman)
Riana Tauro (2):
tests/i915/pm_rc6_residency: Refactoring intel_ctx_t to igt_fixture
tests/i915/pm_rc6_residency: Extend rc6-idle test on remaining engines
tests/i915/i915_pm_rc6_residency.c | 32 +++++++++++++++++++-----------
1 file changed, 20 insertions(+), 12 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 19+ messages in thread* [igt-dev] [PATCH i-g-t v2 1/2] tests/i915/pm_rc6_residency: Refactoring intel_ctx_t to igt_fixture 2022-06-21 13:45 [igt-dev] [PATCH i-g-t v2 0/2] Extend i915_pm_rc6_residency Riana Tauro @ 2022-06-21 13:45 ` Riana Tauro 2022-06-21 14:10 ` Gupta, Anshuman 2022-06-21 13:45 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/i915/pm_rc6_residency: Extend rc6-idle test on remaining engines Riana Tauro ` (6 subsequent siblings) 7 siblings, 1 reply; 19+ messages in thread From: Riana Tauro @ 2022-06-21 13:45 UTC (permalink / raw) To: igt-dev Refactor code to move intel_ctx_create_all_physical() and intel_ctx_destroy() to igt_fixture to be used by rc6_fence and other tests. No functional changes v2 : refactor code (Anshuman) Signed-off-by: Riana Tauro <riana.tauro@intel.com> --- tests/i915/i915_pm_rc6_residency.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/i915/i915_pm_rc6_residency.c b/tests/i915/i915_pm_rc6_residency.c index cf9eae90..7c1ff32b 100644 --- a/tests/i915/i915_pm_rc6_residency.c +++ b/tests/i915/i915_pm_rc6_residency.c @@ -449,13 +449,12 @@ static void rc6_idle(int i915) } } -static void rc6_fence(int i915) +static void rc6_fence(int i915, const intel_ctx_t *ctx) { 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 +484,6 @@ static void rc6_fence(int i915) assert_within_epsilon(rc6, ts[1] - ts[0], 5); /* Submit but delay execution, we should be idle and conserving power */ - ctx = intel_ctx_create_all_physical(i915); ahnd = get_reloc_ahnd(i915, ctx->id); for_each_ctx_engine(i915, ctx, e) { igt_spin_t *spin; @@ -524,7 +522,6 @@ static void rc6_fence(int i915) assert_within_epsilon(rc6, ts[1] - ts[0], tolerance); gem_quiescent_gpu(i915); } - intel_ctx_destroy(i915, ctx); put_ahnd(ahnd); rapl_close(&rapl); @@ -534,10 +531,12 @@ static void rc6_fence(int i915) igt_main { int i915 = -1; + const intel_ctx_t *ctx; /* Use drm_open_driver to verify device existence */ igt_fixture { i915 = drm_open_driver(DRIVER_INTEL); + ctx = intel_ctx_create_all_physical(i915); } igt_subtest("rc6-idle") { @@ -551,7 +550,7 @@ igt_main igt_require_gem(i915); gem_quiescent_gpu(i915); - rc6_fence(i915); + rc6_fence(i915, ctx); } igt_subtest_group { @@ -592,7 +591,8 @@ igt_main close(sysfs); } - igt_fixture + igt_fixture { + intel_ctx_destroy(i915, ctx); close(i915); - + } } -- 2.25.1 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 1/2] tests/i915/pm_rc6_residency: Refactoring intel_ctx_t to igt_fixture 2022-06-21 13:45 ` [igt-dev] [PATCH i-g-t v2 1/2] tests/i915/pm_rc6_residency: Refactoring intel_ctx_t to igt_fixture Riana Tauro @ 2022-06-21 14:10 ` Gupta, Anshuman 0 siblings, 0 replies; 19+ messages in thread From: Gupta, Anshuman @ 2022-06-21 14:10 UTC (permalink / raw) To: Tauro, Riana, igt-dev@lists.freedesktop.org > -----Original Message----- > From: Tauro, Riana <riana.tauro@intel.com> > Sent: Tuesday, June 21, 2022 7:15 PM > To: igt-dev@lists.freedesktop.org > Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman > <anshuman.gupta@intel.com>; Dixit, Ashutosh <ashutosh.dixit@intel.com> > Subject: [PATCH i-g-t v2 1/2] tests/i915/pm_rc6_residency: Refactoring > intel_ctx_t to igt_fixture > > Refactor code to move intel_ctx_create_all_physical() and > intel_ctx_destroy() to igt_fixture to be used by rc6_fence and other tests. > > No functional changes > > v2 : refactor code (Anshuman) LGTM. Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com> > > Signed-off-by: Riana Tauro <riana.tauro@intel.com> > --- > tests/i915/i915_pm_rc6_residency.c | 14 +++++++------- > 1 file changed, 7 insertions(+), 7 deletions(-) > > diff --git a/tests/i915/i915_pm_rc6_residency.c > b/tests/i915/i915_pm_rc6_residency.c > index cf9eae90..7c1ff32b 100644 > --- a/tests/i915/i915_pm_rc6_residency.c > +++ b/tests/i915/i915_pm_rc6_residency.c > @@ -449,13 +449,12 @@ static void rc6_idle(int i915) > } > } > > -static void rc6_fence(int i915) > +static void rc6_fence(int i915, const intel_ctx_t *ctx) > { > 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 +484,6 @@ static void rc6_fence(int i915) > assert_within_epsilon(rc6, ts[1] - ts[0], 5); > > /* Submit but delay execution, we should be idle and conserving power > */ > - ctx = intel_ctx_create_all_physical(i915); > ahnd = get_reloc_ahnd(i915, ctx->id); > for_each_ctx_engine(i915, ctx, e) { > igt_spin_t *spin; > @@ -524,7 +522,6 @@ static void rc6_fence(int i915) > assert_within_epsilon(rc6, ts[1] - ts[0], tolerance); > gem_quiescent_gpu(i915); > } > - intel_ctx_destroy(i915, ctx); > put_ahnd(ahnd); > > rapl_close(&rapl); > @@ -534,10 +531,12 @@ static void rc6_fence(int i915) igt_main { > int i915 = -1; > + const intel_ctx_t *ctx; > > /* Use drm_open_driver to verify device existence */ > igt_fixture { > i915 = drm_open_driver(DRIVER_INTEL); > + ctx = intel_ctx_create_all_physical(i915); > } > > igt_subtest("rc6-idle") { > @@ -551,7 +550,7 @@ igt_main > igt_require_gem(i915); > gem_quiescent_gpu(i915); > > - rc6_fence(i915); > + rc6_fence(i915, ctx); > } > > igt_subtest_group { > @@ -592,7 +591,8 @@ igt_main > close(sysfs); > } > > - igt_fixture > + igt_fixture { > + intel_ctx_destroy(i915, ctx); > close(i915); > - > + } > } > -- > 2.25.1 ^ permalink raw reply [flat|nested] 19+ messages in thread
* [igt-dev] [PATCH i-g-t v2 2/2] tests/i915/pm_rc6_residency: Extend rc6-idle test on remaining engines 2022-06-21 13:45 [igt-dev] [PATCH i-g-t v2 0/2] Extend i915_pm_rc6_residency Riana Tauro 2022-06-21 13:45 ` [igt-dev] [PATCH i-g-t v2 1/2] tests/i915/pm_rc6_residency: Refactoring intel_ctx_t to igt_fixture Riana Tauro @ 2022-06-21 13:45 ` Riana Tauro 2022-06-21 15:14 ` Gupta, Anshuman 2022-06-21 14:31 ` [igt-dev] ✗ Fi.CI.BAT: failure for Extend i915_pm_rc6_residency (rev2) Patchwork ` (5 subsequent siblings) 7 siblings, 1 reply; 19+ messages in thread From: Riana Tauro @ 2022-06-21 13:45 UTC (permalink / raw) To: igt-dev Run rc6_idle on a single instance of every engine v2: add dynamic subtest (Anshuman) Signed-off-by: Riana Tauro <riana.tauro@intel.com> --- tests/i915/i915_pm_rc6_residency.c | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/tests/i915/i915_pm_rc6_residency.c b/tests/i915/i915_pm_rc6_residency.c index 7c1ff32b..e377e70c 100644 --- a/tests/i915/i915_pm_rc6_residency.c +++ b/tests/i915/i915_pm_rc6_residency.c @@ -292,7 +292,7 @@ static void sighandler(int sig) { } -static void bg_load(int i915, unsigned int flags, unsigned long *ctl) +static void bg_load(int i915, uint64_t engine_flags, unsigned int flags, unsigned long *ctl) { const bool has_execlists = intel_gen(intel_get_drm_devid(i915)) >= 8; struct drm_i915_gem_exec_object2 obj = { @@ -301,6 +301,7 @@ static void bg_load(int i915, unsigned int flags, unsigned long *ctl) struct drm_i915_gem_execbuffer2 execbuf = { .buffers_ptr = to_user_pointer(&obj), .buffer_count = 1, + .flags = engine_flags, }; struct sigaction act = { .sa_handler = sighandler @@ -358,7 +359,7 @@ static void kill_children(int sig) signal(sig, old); } -static void rc6_idle(int i915) +static void rc6_idle(int i915, uint64_t flags) { const int64_t duration_ns = SLEEP_DURATION * (int64_t)NSEC_PER_SEC; const int tolerance = 20; /* Some RC6 is better than none! */ @@ -404,7 +405,7 @@ static void rc6_idle(int i915) for (int p = 0; p < ARRAY_SIZE(phases); p++) { memset(done, 0, 2 * sizeof(*done)); igt_fork(child, 1) /* Setup up a very light load */ - bg_load(i915, phases[p].flags, done); + bg_load(i915, flags, phases[p].flags, done); rapl_read(&rapl, &sample[0]); cycles = -READ_ONCE(done[1]); @@ -539,11 +540,18 @@ igt_main ctx = intel_ctx_create_all_physical(i915); } - igt_subtest("rc6-idle") { + igt_subtest_with_dynamic("rc6-idle") { + const struct intel_execution_engine2 *e; + igt_require_gem(i915); gem_quiescent_gpu(i915); - rc6_idle(i915); + for_each_ctx_engine(i915, ctx, e) { + if (e->instance == 0) { + igt_dynamic_f("%s", e->name) + rc6_idle(i915, e->flags); + } + } } igt_subtest("rc6-fence") { -- 2.25.1 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 2/2] tests/i915/pm_rc6_residency: Extend rc6-idle test on remaining engines 2022-06-21 13:45 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/i915/pm_rc6_residency: Extend rc6-idle test on remaining engines Riana Tauro @ 2022-06-21 15:14 ` Gupta, Anshuman 0 siblings, 0 replies; 19+ messages in thread From: Gupta, Anshuman @ 2022-06-21 15:14 UTC (permalink / raw) To: Tauro, Riana, igt-dev@lists.freedesktop.org > -----Original Message----- > From: Tauro, Riana <riana.tauro@intel.com> > Sent: Tuesday, June 21, 2022 7:15 PM > To: igt-dev@lists.freedesktop.org > Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman > <anshuman.gupta@intel.com>; Dixit, Ashutosh <ashutosh.dixit@intel.com> > Subject: [PATCH i-g-t v2 2/2] tests/i915/pm_rc6_residency: Extend rc6-idle test > on remaining engines > > Run rc6_idle on a single instance of every engine > > v2: add dynamic subtest (Anshuman) > > Signed-off-by: Riana Tauro <riana.tauro@intel.com> Looks Good to me. Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com> > --- > tests/i915/i915_pm_rc6_residency.c | 18 +++++++++++++----- > 1 file changed, 13 insertions(+), 5 deletions(-) > > diff --git a/tests/i915/i915_pm_rc6_residency.c > b/tests/i915/i915_pm_rc6_residency.c > index 7c1ff32b..e377e70c 100644 > --- a/tests/i915/i915_pm_rc6_residency.c > +++ b/tests/i915/i915_pm_rc6_residency.c > @@ -292,7 +292,7 @@ static void sighandler(int sig) { } > > -static void bg_load(int i915, unsigned int flags, unsigned long *ctl) > +static void bg_load(int i915, uint64_t engine_flags, unsigned int > +flags, unsigned long *ctl) > { > const bool has_execlists = intel_gen(intel_get_drm_devid(i915)) >= 8; > struct drm_i915_gem_exec_object2 obj = { @@ -301,6 +301,7 @@ > static void bg_load(int i915, unsigned int flags, unsigned long *ctl) > struct drm_i915_gem_execbuffer2 execbuf = { > .buffers_ptr = to_user_pointer(&obj), > .buffer_count = 1, > + .flags = engine_flags, > }; > struct sigaction act = { > .sa_handler = sighandler > @@ -358,7 +359,7 @@ static void kill_children(int sig) > signal(sig, old); > } > > -static void rc6_idle(int i915) > +static void rc6_idle(int i915, uint64_t flags) > { > const int64_t duration_ns = SLEEP_DURATION * > (int64_t)NSEC_PER_SEC; > const int tolerance = 20; /* Some RC6 is better than none! */ @@ - > 404,7 +405,7 @@ static void rc6_idle(int i915) > for (int p = 0; p < ARRAY_SIZE(phases); p++) { > memset(done, 0, 2 * sizeof(*done)); > igt_fork(child, 1) /* Setup up a very light load */ > - bg_load(i915, phases[p].flags, done); > + bg_load(i915, flags, phases[p].flags, done); > > rapl_read(&rapl, &sample[0]); > cycles = -READ_ONCE(done[1]); > @@ -539,11 +540,18 @@ igt_main > ctx = intel_ctx_create_all_physical(i915); > } > > - igt_subtest("rc6-idle") { > + igt_subtest_with_dynamic("rc6-idle") { > + const struct intel_execution_engine2 *e; > + > igt_require_gem(i915); > gem_quiescent_gpu(i915); > > - rc6_idle(i915); > + for_each_ctx_engine(i915, ctx, e) { > + if (e->instance == 0) { > + igt_dynamic_f("%s", e->name) > + rc6_idle(i915, e->flags); > + } > + } > } > > igt_subtest("rc6-fence") { > -- > 2.25.1 ^ permalink raw reply [flat|nested] 19+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for Extend i915_pm_rc6_residency (rev2) 2022-06-21 13:45 [igt-dev] [PATCH i-g-t v2 0/2] Extend i915_pm_rc6_residency Riana Tauro 2022-06-21 13:45 ` [igt-dev] [PATCH i-g-t v2 1/2] tests/i915/pm_rc6_residency: Refactoring intel_ctx_t to igt_fixture Riana Tauro 2022-06-21 13:45 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/i915/pm_rc6_residency: Extend rc6-idle test on remaining engines Riana Tauro @ 2022-06-21 14:31 ` Patchwork 2022-06-21 15:33 ` Tauro, Riana 2022-06-21 16:07 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork ` (4 subsequent siblings) 7 siblings, 1 reply; 19+ messages in thread From: Patchwork @ 2022-06-21 14:31 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7739 bytes --] == Series Details == Series: Extend i915_pm_rc6_residency (rev2) URL : https://patchwork.freedesktop.org/series/105413/ State : failure == Summary == CI Bug Log - changes from CI_DRM_11788 -> IGTPW_7354 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_7354 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_7354, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html Participating hosts (41 -> 39) ------------------------------ Additional (1): bat-dg2-8 Missing (3): fi-rkl-11600 fi-icl-u2 fi-bdw-samus Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_7354: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@gt_heartbeat: - fi-bsw-nick: [PASS][1] -> [DMESG-FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/fi-bsw-nick/igt@i915_selftest@live@gt_heartbeat.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-bsw-nick/igt@i915_selftest@live@gt_heartbeat.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@gt_lrc: - {bat-adlp-6}: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/bat-adlp-6/igt@i915_selftest@live@gt_lrc.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/bat-adlp-6/igt@i915_selftest@live@gt_lrc.html Known issues ------------ Here are the changes found in IGTPW_7354 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@gem: - fi-blb-e6850: NOTRUN -> [DMESG-FAIL][5] ([i915#4528]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-blb-e6850/igt@i915_selftest@live@gem.html - fi-pnv-d510: NOTRUN -> [DMESG-FAIL][6] ([i915#4528]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-pnv-d510/igt@i915_selftest@live@gem.html * igt@i915_selftest@live@gt_engines: - bat-dg1-6: [PASS][7] -> [INCOMPLETE][8] ([i915#4418]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/bat-dg1-6/igt@i915_selftest@live@gt_engines.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/bat-dg1-6/igt@i915_selftest@live@gt_engines.html * igt@kms_busy@basic@flip: - bat-adlp-4: [PASS][9] -> [DMESG-WARN][10] ([i915#3576]) +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/bat-adlp-4/igt@kms_busy@basic@flip.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/bat-adlp-4/igt@kms_busy@basic@flip.html * igt@kms_flip@basic-flip-vs-modeset@a-edp1: - fi-tgl-u2: [PASS][11] -> [DMESG-WARN][12] ([i915#402]) +2 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/fi-tgl-u2/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-tgl-u2/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html * igt@runner@aborted: - fi-bsw-nick: NOTRUN -> [FAIL][13] ([fdo#109271] / [i915#3428] / [i915#4312]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-bsw-nick/igt@runner@aborted.html #### Possible fixes #### * igt@i915_selftest@live@requests: - fi-blb-e6850: [DMESG-FAIL][14] ([i915#4528]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/fi-blb-e6850/igt@i915_selftest@live@requests.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-blb-e6850/igt@i915_selftest@live@requests.html - fi-pnv-d510: [DMESG-FAIL][16] ([i915#4528]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/fi-pnv-d510/igt@i915_selftest@live@requests.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-pnv-d510/igt@i915_selftest@live@requests.html * igt@kms_busy@basic@modeset: - bat-adlp-4: [DMESG-WARN][18] ([i915#3576]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/bat-adlp-4/igt@kms_busy@basic@modeset.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/bat-adlp-4/igt@kms_busy@basic@modeset.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3428]: https://gitlab.freedesktop.org/drm/intel/issues/3428 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576 [i915#3595]: https://gitlab.freedesktop.org/drm/intel/issues/3595 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4418]: https://gitlab.freedesktop.org/drm/intel/issues/4418 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5174]: https://gitlab.freedesktop.org/drm/intel/issues/5174 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5763]: https://gitlab.freedesktop.org/drm/intel/issues/5763 [i915#5885]: https://gitlab.freedesktop.org/drm/intel/issues/5885 [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6537 -> IGTPW_7354 CI-20190529: 20190529 CI_DRM_11788: ec6f2ba27fe4ed0f5f6aca3977f62793b65bb1b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7354: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html IGT_6537: 331658a8475c8b0c0f7ffe5268a7318ef83da34e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html [-- Attachment #2: Type: text/html, Size: 6793 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for Extend i915_pm_rc6_residency (rev2) 2022-06-21 14:31 ` [igt-dev] ✗ Fi.CI.BAT: failure for Extend i915_pm_rc6_residency (rev2) Patchwork @ 2022-06-21 15:33 ` Tauro, Riana 2022-06-21 16:15 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 19+ messages in thread From: Tauro, Riana @ 2022-06-21 15:33 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Vudum, Lakshminarayana [-- Attachment #1: Type: text/plain, Size: 5638 bytes --] Hi @Vudum, Lakshminarayana<mailto:Lakshminarayana.Vudum@intel.com> The below regressions are unrelated to the patch. Could you please repost the result. Thanks Riana Tauro From: Patchwork <patchwork@emeril.freedesktop.org> Sent: Tuesday, June 21, 2022 8:02 PM To: Tauro, Riana <riana.tauro@intel.com> Cc: igt-dev@lists.freedesktop.org Subject: ✗ Fi.CI.BAT: failure for Extend i915_pm_rc6_residency (rev2) Patch Details Series: Extend i915_pm_rc6_residency (rev2) URL: https://patchwork.freedesktop.org/series/105413/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html CI Bug Log - changes from CI_DRM_11788 -> IGTPW_7354 Summary FAILURE Serious unknown changes coming with IGTPW_7354 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_7354, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html Participating hosts (41 -> 39) Additional (1): bat-dg2-8 Missing (3): fi-rkl-11600 fi-icl-u2 fi-bdw-samus Possible new issues Here are the unknown changes that may have been introduced in IGTPW_7354: IGT changes Possible regressions * igt@i915_selftest@live@gt_heartbeat: * fi-bsw-nick: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/fi-bsw-nick/igt@i915_selftest@live@gt_heartbeat.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-bsw-nick/igt@i915_selftest@live@gt_heartbeat.html> Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@gt_lrc: * {bat-adlp-6}: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/bat-adlp-6/igt@i915_selftest@live@gt_lrc.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/bat-adlp-6/igt@i915_selftest@live@gt_lrc.html> Known issues Here are the changes found in IGTPW_7354 that come from known issues: IGT changes Issues hit * igt@i915_selftest@live@gem: * fi-blb-e6850: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-blb-e6850/igt@i915_selftest@live@gem.html> (i915#4528<https://gitlab.freedesktop.org/drm/intel/issues/4528>) * fi-pnv-d510: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-pnv-d510/igt@i915_selftest@live@gem.html> (i915#4528<https://gitlab.freedesktop.org/drm/intel/issues/4528>) * igt@i915_selftest@live@gt_engines: * bat-dg1-6: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/bat-dg1-6/igt@i915_selftest@live@gt_engines.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/bat-dg1-6/igt@i915_selftest@live@gt_engines.html> (i915#4418<https://gitlab.freedesktop.org/drm/intel/issues/4418>) * igt@kms_busy@basic@flip: * bat-adlp-4: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/bat-adlp-4/igt@kms_busy@basic@flip.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/bat-adlp-4/igt@kms_busy@basic@flip.html> (i915#3576<https://gitlab.freedesktop.org/drm/intel/issues/3576>) +2 similar issues * igt@kms_flip@basic-flip-vs-modeset@a-edp1: * fi-tgl-u2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/fi-tgl-u2/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-tgl-u2/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html> (i915#402<https://gitlab.freedesktop.org/drm/intel/issues/402>) +2 similar issues * igt@runner@aborted: * fi-bsw-nick: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-bsw-nick/igt@runner@aborted.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3428<https://gitlab.freedesktop.org/drm/intel/issues/3428> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312>) Possible fixes * igt@i915_selftest@live@requests: * fi-blb-e6850: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/fi-blb-e6850/igt@i915_selftest@live@requests.html> (i915#4528<https://gitlab.freedesktop.org/drm/intel/issues/4528>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-blb-e6850/igt@i915_selftest@live@requests.html> * fi-pnv-d510: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/fi-pnv-d510/igt@i915_selftest@live@requests.html> (i915#4528<https://gitlab.freedesktop.org/drm/intel/issues/4528>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-pnv-d510/igt@i915_selftest@live@requests.html> * igt@kms_busy@basic@modeset: * bat-adlp-4: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/bat-adlp-4/igt@kms_busy@basic@modeset.html> (i915#3576<https://gitlab.freedesktop.org/drm/intel/issues/3576>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/bat-adlp-4/igt@kms_busy@basic@modeset.html> {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_6537 -> IGTPW_7354 CI-20190529: 20190529 CI_DRM_11788: ec6f2ba27fe4ed0f5f6aca3977f62793b65bb1b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7354: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html IGT_6537: 331658a8475c8b0c0f7ffe5268a7318ef83da34e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git [-- Attachment #2: Type: text/html, Size: 24301 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for Extend i915_pm_rc6_residency (rev2) 2022-06-21 15:33 ` Tauro, Riana @ 2022-06-21 16:15 ` Vudum, Lakshminarayana 0 siblings, 0 replies; 19+ messages in thread From: Vudum, Lakshminarayana @ 2022-06-21 16:15 UTC (permalink / raw) To: Tauro, Riana, igt-dev@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 6105 bytes --] Re-reported. Issue is related to https://gitlab.freedesktop.org/drm/intel/-/issues/3428. Lakshmi. From: Tauro, Riana <riana.tauro@intel.com> Sent: Tuesday, June 21, 2022 8:34 AM To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Subject: RE: ✗ Fi.CI.BAT: failure for Extend i915_pm_rc6_residency (rev2) Hi @Vudum, Lakshminarayana<mailto:Lakshminarayana.Vudum@intel.com> The below regressions are unrelated to the patch. Could you please repost the result. Thanks Riana Tauro From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>> Sent: Tuesday, June 21, 2022 8:02 PM To: Tauro, Riana <riana.tauro@intel.com<mailto:riana.tauro@intel.com>> Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> Subject: ✗ Fi.CI.BAT: failure for Extend i915_pm_rc6_residency (rev2) Patch Details Series: Extend i915_pm_rc6_residency (rev2) URL: https://patchwork.freedesktop.org/series/105413/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html CI Bug Log - changes from CI_DRM_11788 -> IGTPW_7354 Summary FAILURE Serious unknown changes coming with IGTPW_7354 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_7354, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html Participating hosts (41 -> 39) Additional (1): bat-dg2-8 Missing (3): fi-rkl-11600 fi-icl-u2 fi-bdw-samus Possible new issues Here are the unknown changes that may have been introduced in IGTPW_7354: IGT changes Possible regressions * igt@i915_selftest@live@gt_heartbeat: * fi-bsw-nick: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/fi-bsw-nick/igt@i915_selftest@live@gt_heartbeat.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-bsw-nick/igt@i915_selftest@live@gt_heartbeat.html> Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@gt_lrc: * {bat-adlp-6}: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/bat-adlp-6/igt@i915_selftest@live@gt_lrc.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/bat-adlp-6/igt@i915_selftest@live@gt_lrc.html> Known issues Here are the changes found in IGTPW_7354 that come from known issues: IGT changes Issues hit * igt@i915_selftest@live@gem: * fi-blb-e6850: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-blb-e6850/igt@i915_selftest@live@gem.html> (i915#4528<https://gitlab.freedesktop.org/drm/intel/issues/4528>) * fi-pnv-d510: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-pnv-d510/igt@i915_selftest@live@gem.html> (i915#4528<https://gitlab.freedesktop.org/drm/intel/issues/4528>) * igt@i915_selftest@live@gt_engines: * bat-dg1-6: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/bat-dg1-6/igt@i915_selftest@live@gt_engines.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/bat-dg1-6/igt@i915_selftest@live@gt_engines.html> (i915#4418<https://gitlab.freedesktop.org/drm/intel/issues/4418>) * igt@kms_busy@basic@flip: * bat-adlp-4: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/bat-adlp-4/igt@kms_busy@basic@flip.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/bat-adlp-4/igt@kms_busy@basic@flip.html> (i915#3576<https://gitlab.freedesktop.org/drm/intel/issues/3576>) +2 similar issues * igt@kms_flip@basic-flip-vs-modeset@a-edp1: * fi-tgl-u2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/fi-tgl-u2/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-tgl-u2/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html> (i915#402<https://gitlab.freedesktop.org/drm/intel/issues/402>) +2 similar issues * igt@runner@aborted: * fi-bsw-nick: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-bsw-nick/igt@runner@aborted.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3428<https://gitlab.freedesktop.org/drm/intel/issues/3428> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312>) Possible fixes * igt@i915_selftest@live@requests: * fi-blb-e6850: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/fi-blb-e6850/igt@i915_selftest@live@requests.html> (i915#4528<https://gitlab.freedesktop.org/drm/intel/issues/4528>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-blb-e6850/igt@i915_selftest@live@requests.html> * fi-pnv-d510: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/fi-pnv-d510/igt@i915_selftest@live@requests.html> (i915#4528<https://gitlab.freedesktop.org/drm/intel/issues/4528>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-pnv-d510/igt@i915_selftest@live@requests.html> * igt@kms_busy@basic@modeset: * bat-adlp-4: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/bat-adlp-4/igt@kms_busy@basic@modeset.html> (i915#3576<https://gitlab.freedesktop.org/drm/intel/issues/3576>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/bat-adlp-4/igt@kms_busy@basic@modeset.html> {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_6537 -> IGTPW_7354 CI-20190529: 20190529 CI_DRM_11788: ec6f2ba27fe4ed0f5f6aca3977f62793b65bb1b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7354: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html IGT_6537: 331658a8475c8b0c0f7ffe5268a7318ef83da34e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git [-- Attachment #2: Type: text/html, Size: 26204 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Extend i915_pm_rc6_residency (rev2) 2022-06-21 13:45 [igt-dev] [PATCH i-g-t v2 0/2] Extend i915_pm_rc6_residency Riana Tauro ` (2 preceding siblings ...) 2022-06-21 14:31 ` [igt-dev] ✗ Fi.CI.BAT: failure for Extend i915_pm_rc6_residency (rev2) Patchwork @ 2022-06-21 16:07 ` Patchwork 2022-06-22 3:03 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (3 subsequent siblings) 7 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2022-06-21 16:07 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7427 bytes --] == Series Details == Series: Extend i915_pm_rc6_residency (rev2) URL : https://patchwork.freedesktop.org/series/105413/ State : success == Summary == CI Bug Log - changes from CI_DRM_11788 -> IGTPW_7354 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html Participating hosts (41 -> 39) ------------------------------ Additional (1): bat-dg2-8 Missing (3): fi-rkl-11600 fi-icl-u2 fi-bdw-samus Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_7354: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@gt_lrc: - {bat-adlp-6}: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/bat-adlp-6/igt@i915_selftest@live@gt_lrc.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/bat-adlp-6/igt@i915_selftest@live@gt_lrc.html Known issues ------------ Here are the changes found in IGTPW_7354 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@gem: - fi-blb-e6850: NOTRUN -> [DMESG-FAIL][3] ([i915#4528]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-blb-e6850/igt@i915_selftest@live@gem.html - fi-pnv-d510: NOTRUN -> [DMESG-FAIL][4] ([i915#4528]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-pnv-d510/igt@i915_selftest@live@gem.html * igt@i915_selftest@live@gt_engines: - bat-dg1-6: [PASS][5] -> [INCOMPLETE][6] ([i915#4418]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/bat-dg1-6/igt@i915_selftest@live@gt_engines.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/bat-dg1-6/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@gt_heartbeat: - fi-bsw-nick: [PASS][7] -> [DMESG-FAIL][8] ([i915#3428]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/fi-bsw-nick/igt@i915_selftest@live@gt_heartbeat.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-bsw-nick/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_busy@basic@flip: - bat-adlp-4: [PASS][9] -> [DMESG-WARN][10] ([i915#3576]) +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/bat-adlp-4/igt@kms_busy@basic@flip.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/bat-adlp-4/igt@kms_busy@basic@flip.html * igt@kms_flip@basic-flip-vs-modeset@a-edp1: - fi-tgl-u2: [PASS][11] -> [DMESG-WARN][12] ([i915#402]) +2 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/fi-tgl-u2/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-tgl-u2/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html * igt@runner@aborted: - fi-bsw-nick: NOTRUN -> [FAIL][13] ([fdo#109271] / [i915#3428] / [i915#4312]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-bsw-nick/igt@runner@aborted.html #### Possible fixes #### * igt@i915_selftest@live@requests: - fi-blb-e6850: [DMESG-FAIL][14] ([i915#4528]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/fi-blb-e6850/igt@i915_selftest@live@requests.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-blb-e6850/igt@i915_selftest@live@requests.html - fi-pnv-d510: [DMESG-FAIL][16] ([i915#4528]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/fi-pnv-d510/igt@i915_selftest@live@requests.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/fi-pnv-d510/igt@i915_selftest@live@requests.html * igt@kms_busy@basic@modeset: - bat-adlp-4: [DMESG-WARN][18] ([i915#3576]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/bat-adlp-4/igt@kms_busy@basic@modeset.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/bat-adlp-4/igt@kms_busy@basic@modeset.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3428]: https://gitlab.freedesktop.org/drm/intel/issues/3428 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576 [i915#3595]: https://gitlab.freedesktop.org/drm/intel/issues/3595 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4418]: https://gitlab.freedesktop.org/drm/intel/issues/4418 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5174]: https://gitlab.freedesktop.org/drm/intel/issues/5174 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5763]: https://gitlab.freedesktop.org/drm/intel/issues/5763 [i915#5885]: https://gitlab.freedesktop.org/drm/intel/issues/5885 [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6537 -> IGTPW_7354 CI-20190529: 20190529 CI_DRM_11788: ec6f2ba27fe4ed0f5f6aca3977f62793b65bb1b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7354: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html IGT_6537: 331658a8475c8b0c0f7ffe5268a7318ef83da34e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html [-- Attachment #2: Type: text/html, Size: 6529 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) 2022-06-21 13:45 [igt-dev] [PATCH i-g-t v2 0/2] Extend i915_pm_rc6_residency Riana Tauro ` (3 preceding siblings ...) 2022-06-21 16:07 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2022-06-22 3:03 ` Patchwork 2022-06-22 5:03 ` Tauro, Riana 2022-06-27 7:13 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork ` (2 subsequent siblings) 7 siblings, 1 reply; 19+ messages in thread From: Patchwork @ 2022-06-22 3:03 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 57854 bytes --] == Series Details == Series: Extend i915_pm_rc6_residency (rev2) URL : https://patchwork.freedesktop.org/series/105413/ State : failure == Summary == CI Bug Log - changes from CI_DRM_11788_full -> IGTPW_7354_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_7354_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_7354_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html Participating hosts (13 -> 10) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_7354_full: ### IGT changes ### #### Possible regressions #### * igt@device_reset@unbind-reset-rebind: - shard-tglb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb8/igt@device_reset@unbind-reset-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@device_reset@unbind-reset-rebind.html * {igt@i915_pm_rc6_residency@rc6-idle@rcs0} (NEW): - shard-tglb: NOTRUN -> [WARN][3] +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html - shard-iclb: NOTRUN -> [WARN][4] +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html - {shard-rkl}: NOTRUN -> [WARN][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html - {shard-tglu}: NOTRUN -> [WARN][6] +3 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@device_reset@unbind-reset-rebind: - {shard-rkl}: [PASS][7] -> [FAIL][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@device_reset@unbind-reset-rebind.html * {igt@drm_fdinfo@virtual-busy-idle}: - {shard-dg1}: NOTRUN -> [SKIP][9] +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-19/igt@drm_fdinfo@virtual-busy-idle.html * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: - {shard-rkl}: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: - {shard-dg1}: NOTRUN -> [FAIL][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-19/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html New tests --------- New tests have been introduced between CI_DRM_11788_full and IGTPW_7354_full: ### New IGT tests (4) ### * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - Statuses : 6 pass(s) 3 warn(s) - Exec time: [12.20, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - Statuses : 5 pass(s) 4 warn(s) - Exec time: [12.20, 12.26] s * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - Statuses : 6 pass(s) 3 warn(s) - Exec time: [12.19, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - Statuses : 5 pass(s) 3 warn(s) - Exec time: [12.20, 12.26] s Known issues ------------ Here are the changes found in IGTPW_7354_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_persistence@engines-hang: - shard-snb: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#1099]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@gem_ctx_persistence@engines-hang.html * igt@gem_ctx_sseu@mmap-args: - shard-tglb: NOTRUN -> [SKIP][13] ([i915#280]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-suspend: - shard-kbl: NOTRUN -> [INCOMPLETE][14] ([i915#3614]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@unwedge-stress: - shard-tglb: [PASS][15] -> [FAIL][16] ([i915#5784]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_eio@unwedge-stress.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglb: NOTRUN -> [FAIL][17] ([i915#6117]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@gem_exec_balancer@parallel-ordering.html - shard-iclb: NOTRUN -> [SKIP][18] ([i915#4525]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglb: NOTRUN -> [FAIL][19] ([i915#2842]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-glk: NOTRUN -> [FAIL][20] ([i915#2842]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [PASS][21] -> [FAIL][22] ([i915#2842]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html - shard-kbl: [PASS][23] -> [FAIL][24] ([i915#2842]) +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-pace@rcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-tglb: [PASS][25] -> [FAIL][26] ([i915#2842]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_exec_fair@basic-pace@vecs0.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-kbl: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#4613]) +2 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl3/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#4613]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html - shard-iclb: NOTRUN -> [SKIP][29] ([i915#4613]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@gem_lmem_swapping@verify-ccs.html - shard-apl: NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#4613]) +1 similar issue [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@gem_lmem_swapping@verify-ccs.html - shard-tglb: NOTRUN -> [SKIP][31] ([i915#4613]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap_gtt@coherency: - shard-tglb: NOTRUN -> [SKIP][32] ([fdo#111656]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_mmap_gtt@coherency.html - shard-iclb: NOTRUN -> [SKIP][33] ([fdo#109292]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_mmap_gtt@coherency.html * igt@gem_pwrite@basic-exhaustion: - shard-kbl: NOTRUN -> [WARN][34] ([i915#2658]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-buffer: - shard-tglb: NOTRUN -> [SKIP][35] ([i915#4270]) +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-iclb: NOTRUN -> [SKIP][36] ([i915#4270]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][37] ([i915#768]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_userptr_blits@coherency-sync: - shard-iclb: NOTRUN -> [SKIP][38] ([fdo#109290]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@coherency-sync.html - shard-tglb: NOTRUN -> [SKIP][39] ([fdo#110542]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-apl: NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#3323]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gem_userptr_blits@dmabuf-sync.html - shard-tglb: NOTRUN -> [SKIP][41] ([i915#3323]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_userptr_blits@dmabuf-sync.html - shard-glk: NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#3323]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html - shard-iclb: NOTRUN -> [SKIP][43] ([i915#3323]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@gem_userptr_blits@dmabuf-sync.html - shard-kbl: NOTRUN -> [SKIP][44] ([fdo#109271] / [i915#3323]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglb: NOTRUN -> [SKIP][45] ([i915#3297]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-iclb: NOTRUN -> [SKIP][46] ([i915#3297]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gen3_render_tiledx_blits: - shard-tglb: NOTRUN -> [SKIP][47] ([fdo#109289]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gen3_render_tiledx_blits.html - shard-iclb: NOTRUN -> [SKIP][48] ([fdo#109289]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gen3_render_tiledx_blits.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][49] -> [DMESG-WARN][50] ([i915#5566] / [i915#716]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@gen9_exec_parse@allowed-single.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@secure-batches: - shard-iclb: NOTRUN -> [SKIP][51] ([i915#2856]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb1/igt@gen9_exec_parse@secure-batches.html - shard-tglb: NOTRUN -> [SKIP][52] ([i915#2527] / [i915#2856]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gen9_exec_parse@secure-batches.html * igt@i915_pm_dc@dc6-dpms: - shard-tglb: NOTRUN -> [FAIL][53] ([i915#454]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html - shard-kbl: NOTRUN -> [FAIL][54] ([i915#454]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_dc@dc6-dpms.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-tglb: NOTRUN -> [SKIP][55] ([i915#1769]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_atomic_transition@plane-all-modeset-transition.html - shard-iclb: NOTRUN -> [SKIP][56] ([i915#1769]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-tglb: NOTRUN -> [SKIP][57] ([i915#5286]) +2 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-iclb: NOTRUN -> [SKIP][58] ([i915#5286]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglb: [PASS][59] -> [FAIL][60] ([i915#3743]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-kbl: NOTRUN -> [SKIP][61] ([fdo#109271]) +151 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-tglb: NOTRUN -> [SKIP][62] ([fdo#111615]) +1 similar issue [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - shard-iclb: NOTRUN -> [SKIP][63] ([fdo#110723]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: - shard-tglb: NOTRUN -> [SKIP][64] ([i915#6095]) +1 similar issue [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#3886]) +7 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-kbl: NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#3886]) +10 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][67] ([i915#3689] / [i915#3886]) +2 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html - shard-glk: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#3886]) +5 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html - shard-iclb: NOTRUN -> [SKIP][69] ([fdo#109278] / [i915#3886]) +6 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][70] ([fdo#111615] / [i915#3689]) +1 similar issue [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs: - shard-glk: NOTRUN -> [SKIP][71] ([fdo#109271]) +72 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][72] ([i915#3689]) +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_color@pipe-d-gamma: - shard-iclb: NOTRUN -> [SKIP][73] ([fdo#109278] / [i915#1149]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_color@pipe-d-gamma.html * igt@kms_color_chamelium@pipe-a-gamma: - shard-snb: NOTRUN -> [SKIP][74] ([fdo#109271] / [fdo#111827]) +6 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb5/igt@kms_color_chamelium@pipe-a-gamma.html - shard-glk: NOTRUN -> [SKIP][75] ([fdo#109271] / [fdo#111827]) +3 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_color_chamelium@pipe-a-gamma.html * igt@kms_color_chamelium@pipe-b-degamma: - shard-apl: NOTRUN -> [SKIP][76] ([fdo#109271] / [fdo#111827]) +6 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_color_chamelium@pipe-b-degamma.html * igt@kms_color_chamelium@pipe-c-ctm-0-75: - shard-kbl: NOTRUN -> [SKIP][77] ([fdo#109271] / [fdo#111827]) +10 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_color_chamelium@pipe-c-ctm-0-75.html * igt@kms_color_chamelium@pipe-c-gamma: - shard-iclb: NOTRUN -> [SKIP][78] ([fdo#109284] / [fdo#111827]) +2 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_color_chamelium@pipe-c-gamma.html * igt@kms_color_chamelium@pipe-d-ctm-0-25: - shard-tglb: NOTRUN -> [SKIP][79] ([fdo#109284] / [fdo#111827]) +3 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_color_chamelium@pipe-d-ctm-0-25.html * igt@kms_content_protection@srm: - shard-kbl: NOTRUN -> [TIMEOUT][80] ([i915#1319]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen: - shard-iclb: NOTRUN -> [SKIP][81] ([fdo#109278]) +16 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html * igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen: - shard-iclb: NOTRUN -> [SKIP][82] ([fdo#109278] / [fdo#109279]) +1 similar issue [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen.html * igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding: - shard-tglb: NOTRUN -> [SKIP][83] ([i915#3359]) +1 similar issue [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding: - shard-tglb: NOTRUN -> [SKIP][84] ([fdo#109279] / [i915#3359]) +1 similar issue [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding.html * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: - shard-tglb: NOTRUN -> [SKIP][85] ([i915#3319]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [PASS][86] -> [FAIL][87] ([i915#72]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-iclb: NOTRUN -> [SKIP][88] ([fdo#109274] / [fdo#109278]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled: - shard-tglb: NOTRUN -> [SKIP][89] ([i915#5287]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html - shard-iclb: NOTRUN -> [SKIP][90] ([i915#5287]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-tglb: NOTRUN -> [SKIP][91] ([fdo#109274] / [fdo#111825]) +2 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html - shard-iclb: NOTRUN -> [SKIP][92] ([fdo#109274]) +1 similar issue [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][93] -> [FAIL][94] ([i915#2122]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1: - shard-kbl: [PASS][95] -> [DMESG-WARN][96] ([i915#180]) +5 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-apl: [PASS][97] -> [DMESG-WARN][98] ([i915#180]) +1 similar issue [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@kms_flip@flip-vs-suspend@c-dp1.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-iclb: NOTRUN -> [SKIP][99] ([fdo#109280]) +9 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-apl: NOTRUN -> [SKIP][100] ([fdo#109271]) +100 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: - shard-tglb: NOTRUN -> [SKIP][101] ([fdo#109280] / [fdo#111825]) +11 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d: - shard-apl: NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#533]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html - shard-glk: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#533]) +1 similar issue [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html * igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence: - shard-kbl: NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#533]) +1 similar issue [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-apl: NOTRUN -> [FAIL][105] ([fdo#108145] / [i915#265]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-kbl: NOTRUN -> [FAIL][106] ([fdo#108145] / [i915#265]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-glk: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#658]) +2 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-iclb: NOTRUN -> [SKIP][108] ([fdo#109642] / [fdo#111068] / [i915#658]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-kbl: NOTRUN -> [SKIP][109] ([fdo#109271] / [i915#658]) +2 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-apl: NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#658]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglb: NOTRUN -> [SKIP][111] ([i915#1911]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: [PASS][112] -> [SKIP][113] ([fdo#109441]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr@psr2_no_drrs.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@kms_psr@psr2_no_drrs.html * igt@nouveau_crc@pipe-b-source-outp-inactive: - shard-tglb: NOTRUN -> [SKIP][114] ([i915#2530]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@nouveau_crc@pipe-b-source-outp-inactive.html - shard-iclb: NOTRUN -> [SKIP][115] ([i915#2530]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@nouveau_crc@pipe-b-source-outp-inactive.html * igt@prime_nv_api@i915_self_import: - shard-tglb: NOTRUN -> [SKIP][116] ([fdo#109291]) +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@prime_nv_api@i915_self_import.html - shard-iclb: NOTRUN -> [SKIP][117] ([fdo#109291]) +1 similar issue [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@prime_nv_api@i915_self_import.html * igt@prime_nv_pcopy@test3_5: - shard-snb: NOTRUN -> [SKIP][118] ([fdo#109271]) +193 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@prime_nv_pcopy@test3_5.html * igt@sw_sync@sync_merge: - shard-apl: NOTRUN -> [FAIL][119] ([i915#6140]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sw_sync@sync_merge.html * igt@sysfs_clients@create: - shard-kbl: NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#2994]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@sysfs_clients@create.html * igt@sysfs_clients@recycle-many: - shard-apl: NOTRUN -> [SKIP][121] ([fdo#109271] / [i915#2994]) +1 similar issue [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sysfs_clients@recycle-many.html * igt@sysfs_clients@split-50: - shard-tglb: NOTRUN -> [SKIP][122] ([i915#2994]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@sysfs_clients@split-50.html - shard-glk: NOTRUN -> [SKIP][123] ([fdo#109271] / [i915#2994]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk8/igt@sysfs_clients@split-50.html - shard-iclb: NOTRUN -> [SKIP][124] ([i915#2994]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@sysfs_clients@split-50.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - {shard-tglu}: [FAIL][125] ([i915#6268]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@legacy-engines-hang@blt: - {shard-rkl}: [SKIP][127] ([i915#6252]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-4/igt@gem_ctx_persistence@legacy-engines-hang@blt.html * igt@gem_ctx_persistence@legacy-engines-hostile@bsd1: - {shard-dg1}: [FAIL][129] ([i915#4883]) -> [PASS][130] +1 similar issue [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-18/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-16/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html * igt@gem_eio@kms: - shard-tglb: [FAIL][131] ([i915#5784]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_eio@kms.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_eio@kms.html * igt@gem_exec_balancer@parallel-balancer: - shard-iclb: [SKIP][133] ([i915#4525]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb6/igt@gem_exec_balancer@parallel-balancer.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_fair@basic-none@vcs1: - shard-kbl: [FAIL][135] ([i915#2842]) -> [PASS][136] +2 similar issues [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-none@vcs1.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - {shard-rkl}: [SKIP][137] ([fdo#109313]) -> [PASS][138] [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_reloc@basic-write-read-noreloc: - {shard-rkl}: [SKIP][139] ([i915#3281]) -> [PASS][140] +4 similar issues [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_whisper@basic-contexts-priority-all: - shard-glk: [DMESG-WARN][141] ([i915#118]) -> [PASS][142] [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk6/igt@gem_exec_whisper@basic-contexts-priority-all.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_whisper@basic-contexts-priority-all.html * igt@gem_partial_pwrite_pread@writes-after-reads: - {shard-rkl}: [SKIP][143] ([i915#3282]) -> [PASS][144] +2 similar issues [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [DMESG-WARN][145] ([i915#5566] / [i915#716]) -> [PASS][146] [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk1/igt@gen9_exec_parse@allowed-single.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-chained: - {shard-rkl}: [SKIP][147] ([i915#2527]) -> [PASS][148] +1 similar issue [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][149] ([i915#454]) -> [PASS][150] [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@i915_pm_dc@dc6-psr.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rpm@dpms-non-lpsp: - {shard-dg1}: [SKIP][151] ([i915#1397]) -> [PASS][152] [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-16/igt@i915_pm_rpm@dpms-non-lpsp.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-18/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-kbl: [INCOMPLETE][153] -> [PASS][154] [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_selftest@live@hangcheck: - shard-snb: [INCOMPLETE][155] ([i915#3921]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-snb4/igt@i915_selftest@live@hangcheck.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb2/igt@i915_selftest@live@hangcheck.html * igt@i915_suspend@fence-restore-untiled: - shard-kbl: [DMESG-WARN][157] ([i915#180]) -> [PASS][158] +1 similar issue [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@i915_suspend@fence-restore-untiled.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@i915_suspend@fence-restore-untiled.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-tglb: [FAIL][159] ([i915#3743]) -> [PASS][160] +3 similar issues [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_color@pipe-a-ctm-red-to-blue: - {shard-rkl}: [SKIP][161] ([i915#1149] / [i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_color@pipe-a-ctm-red-to-blue.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_color@pipe-a-ctm-red-to-blue.html * igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen: - {shard-rkl}: [SKIP][163] ([fdo#112022] / [i915#4070]) -> [PASS][164] +1 similar issue [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html * igt@kms_cursor_legacy@cursora-vs-flipa-varying-size: - {shard-rkl}: [SKIP][165] ([fdo#111825] / [i915#4070]) -> [PASS][166] +1 similar issue [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled: - {shard-rkl}: [SKIP][167] ([fdo#111314] / [i915#4098] / [i915#4369]) -> [PASS][168] +2 similar issues [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: - {shard-rkl}: [SKIP][169] ([i915#1849] / [i915#4098]) -> [PASS][170] +1 similar issue [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - shard-apl: [DMESG-WARN][171] ([i915#180]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: - {shard-rkl}: [SKIP][173] ([i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1: - shard-iclb: [SKIP][175] ([i915#5176]) -> [PASS][176] +2 similar issues [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-iclb: [SKIP][177] ([fdo#109441]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_cpu.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_psr@suspend: - {shard-rkl}: [SKIP][179] ([i915#1072]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_psr@suspend.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_psr@suspend.html * igt@kms_vblank@pipe-a-accuracy-idle: - shard-glk: [FAIL][181] ([i915#43]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@kms_vblank@pipe-a-accuracy-idle.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_vblank@pipe-a-accuracy-idle.html * igt@kms_vblank@pipe-b-query-forked: - {shard-rkl}: [SKIP][183] ([i915#1845] / [i915#4098]) -> [PASS][184] +4 similar issues [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_vblank@pipe-b-query-forked.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_vblank@pipe-b-query-forked.html #### Warnings #### * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-iclb: [FAIL][185] ([i915#2842]) -> [FAIL][186] ([i915#2852]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@gem_exec_fair@basic-none-rrul@rcs0.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-tglb: [SKIP][187] ([i915#2848]) -> [FAIL][188] ([i915#2842]) +4 similar issues [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@gem_exec_fair@basic-none@vcs0.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [FAIL][189] ([i915#2842]) -> [SKIP][190] ([i915#2848]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-iclb: [SKIP][191] ([i915#658]) -> [SKIP][192] ([i915#588]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-iclb: [SKIP][193] ([i915#2920]) -> [SKIP][194] ([i915#658]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-iclb: [SKIP][195] ([i915#2920]) -> [SKIP][196] ([fdo#111068] / [i915#658]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-iclb: [SKIP][197] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [FAIL][198] ([i915#5939]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb4/igt@kms_psr2_su@page_flip-p010.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr2_su@page_flip-p010.html * igt@runner@aborted: - shard-apl: ([FAIL][199], [FAIL][200], [FAIL][201]) ([fdo#109271] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][202], [FAIL][203], [FAIL][204], [FAIL][205]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@runner@aborted.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@runner@aborted.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@runner@aborted.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@runner@aborted.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@runner@aborted.html - shard-kbl: ([FAIL][206], [FAIL][207], [FAIL][208], [FAIL][209], [FAIL][210]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][211], [FAIL][212], [FAIL][213], [FAIL][214], [FAIL][215], [FAIL][216]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl3/igt@runner@aborted.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl7/igt@runner@aborted.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@runner@aborted.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109290]: https://bugs.freedesktop.org/show_bug.cgi?id=109290 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109292]: https://bugs.freedesktop.org/show_bug.cgi?id=109292 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314 [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#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112022]: https://bugs.freedesktop.org/show_bug.cgi?id=112022 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911 [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2848]: https://gitlab.freedesktop.org/drm/intel/issues/2848 [i915#2852]: https://gitlab.freedesktop.org/drm/intel/issues/2852 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3376]: https://gitlab.freedesktop.org/drm/intel/issues/3376 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3614]: https://gitlab.freedesktop.org/drm/intel/issues/3614 [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#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810 [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278 [i915#43]: https://gitlab.freedesktop.org/drm/intel/issues/43 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4842]: https://gitlab.freedesktop.org/drm/intel/issues/4842 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4883]: https://gitlab.freedesktop.org/drm/intel/issues/4883 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893 [i915#4904]: https://gitlab.freedesktop.org/drm/intel/issues/4904 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5174]: https://gitlab.freedesktop.org/drm/intel/issues/5174 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588 [i915#5939]: https://gitlab.freedesktop.org/drm/intel/issues/5939 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6140]: https://gitlab.freedesktop.org/drm/intel/issues/6140 [i915#6141]: https://gitlab.freedesktop.org/drm/intel/issues/6141 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6537 -> IGTPW_7354 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_11788: ec6f2ba27fe4ed0f5f6aca3977f62793b65bb1b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7354: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html IGT_6537: 331658a8475c8b0c0f7ffe5268a7318ef83da34e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html [-- Attachment #2: Type: text/html, Size: 65442 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) 2022-06-22 3:03 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-06-22 5:03 ` Tauro, Riana 2022-06-23 5:23 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 19+ messages in thread From: Tauro, Riana @ 2022-06-22 5:03 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Vudum, Lakshminarayana [-- Attachment #1: Type: text/plain, Size: 54901 bytes --] Hi @Vudum, Lakshminarayana<mailto:Lakshminarayana.Vudum@intel.com> This issue is not related to the changes * igt@device_reset@unbind-reset-rebind: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb8/igt@device_reset@unbind-reset-rebind.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@device_reset@unbind-reset-rebind.html> The below warnings were part of the test before as well. Not introduced with the new changes.Could you re-report the results. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11787/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle.html * {igt@i915_pm_rc6_residency@rc6-idle@rcs0} (NEW): * shard-tglb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * shard-iclb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * {shard-rkl}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> * {shard-tglu}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues Thanks Riana Tauro From: Patchwork <patchwork@emeril.freedesktop.org> Sent: Wednesday, June 22, 2022 8:34 AM To: Tauro, Riana <riana.tauro@intel.com> Cc: igt-dev@lists.freedesktop.org Subject: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) Patch Details Series: Extend i915_pm_rc6_residency (rev2) URL: https://patchwork.freedesktop.org/series/105413/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html CI Bug Log - changes from CI_DRM_11788_full -> IGTPW_7354_full Summary FAILURE Serious unknown changes coming with IGTPW_7354_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_7354_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html Participating hosts (13 -> 10) Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues Here are the unknown changes that may have been introduced in IGTPW_7354_full: IGT changes Possible regressions * igt@device_reset@unbind-reset-rebind: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb8/igt@device_reset@unbind-reset-rebind.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@device_reset@unbind-reset-rebind.html> * {igt@i915_pm_rc6_residency@rc6-idle@rcs0} (NEW): * shard-tglb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * shard-iclb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * {shard-rkl}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> * {shard-tglu}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@device_reset@unbind-reset-rebind: * {shard-rkl}: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@device_reset@unbind-reset-rebind.html> * {igt@drm_fdinfo@virtual-busy-idle}: * {shard-dg1}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-19/igt@drm_fdinfo@virtual-busy-idle.html> +2 similar issues * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: * {shard-rkl}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html> * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: * {shard-dg1}: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-19/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html> New tests New tests have been introduced between CI_DRM_11788_full and IGTPW_7354_full: New IGT tests (4) * igt@i915_pm_rc6_residency@rc6-idle@bcs0: * Statuses : 6 pass(s) 3 warn(s) * Exec time: [12.20, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@rcs0: * Statuses : 5 pass(s) 4 warn(s) * Exec time: [12.20, 12.26] s * igt@i915_pm_rc6_residency@rc6-idle@vcs0: * Statuses : 6 pass(s) 3 warn(s) * Exec time: [12.19, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@vecs0: * Statuses : 5 pass(s) 3 warn(s) * Exec time: [12.20, 12.26] s Known issues Here are the changes found in IGTPW_7354_full that come from known issues: IGT changes Issues hit * igt@gem_ctx_persistence@engines-hang: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@gem_ctx_persistence@engines-hang.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) * igt@gem_ctx_sseu@mmap-args: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_ctx_sseu@mmap-args.html> (i915#280<https://gitlab.freedesktop.org/drm/intel/issues/280>) * igt@gem_eio@in-flight-suspend: * shard-kbl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@gem_eio@in-flight-suspend.html> (i915#3614<https://gitlab.freedesktop.org/drm/intel/issues/3614>) * igt@gem_eio@unwedge-stress: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_eio@unwedge-stress.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gem_eio@unwedge-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) * igt@gem_exec_balancer@parallel-ordering: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@gem_exec_balancer@parallel-ordering.html> (i915#6117<https://gitlab.freedesktop.org/drm/intel/issues/6117>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_balancer@parallel-ordering.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) * igt@gem_exec_fair@basic-none-share@rcs0: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_exec_fair@basic-none-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_exec_fair@basic-none-solo@rcs0: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@gem_exec_fair@basic-none-solo@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_exec_fair@basic-pace@rcs0: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +2 similar issues * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-pace@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1 similar issue * igt@gem_exec_fair@basic-pace@vecs0: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_exec_fair@basic-pace@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_exec_fair@basic-pace@vecs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_lmem_swapping@parallel-random-verify: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl3/igt@gem_lmem_swapping@parallel-random-verify.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +2 similar issues * igt@gem_lmem_swapping@verify-ccs: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@gem_lmem_swapping@verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@gem_lmem_swapping@verify-ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_lmem_swapping@verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) * igt@gem_mmap_gtt@coherency: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_mmap_gtt@coherency.html> (fdo#111656<https://bugs.freedesktop.org/show_bug.cgi?id=111656>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_mmap_gtt@coherency.html> (fdo#109292<https://bugs.freedesktop.org/show_bug.cgi?id=109292>) * igt@gem_pwrite@basic-exhaustion: * shard-kbl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html> (i915#2658<https://gitlab.freedesktop.org/drm/intel/issues/2658>) * igt@gem_pxp@create-regular-buffer: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@gem_pxp@create-regular-buffer.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1 similar issue * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1 similar issue * igt@gem_render_copy@linear-to-vebox-yf-tiled: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@gem_render_copy@linear-to-vebox-yf-tiled.html> (i915#768<https://gitlab.freedesktop.org/drm/intel/issues/768>) +1 similar issue * igt@gem_userptr_blits@coherency-sync: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@coherency-sync.html> (fdo#109290<https://bugs.freedesktop.org/show_bug.cgi?id=109290>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@coherency-sync.html> (fdo#110542<https://bugs.freedesktop.org/show_bug.cgi?id=110542>) * igt@gem_userptr_blits@dmabuf-sync: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gem_userptr_blits@dmabuf-sync.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@gem_userptr_blits@dmabuf-sync.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * igt@gem_userptr_blits@invalid-mmap-offset-unsync: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) * igt@gen3_render_tiledx_blits: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gen3_render_tiledx_blits.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gen3_render_tiledx_blits.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) * igt@gen9_exec_parse@allowed-single: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@gen9_exec_parse@allowed-single.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gen9_exec_parse@allowed-single.html> (i915#5566<https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716<https://gitlab.freedesktop.org/drm/intel/issues/716>) * igt@gen9_exec_parse@secure-batches: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb1/igt@gen9_exec_parse@secure-batches.html> (i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1 similar issue * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gen9_exec_parse@secure-batches.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1 similar issue * igt@i915_pm_dc@dc6-dpms: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html> (i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_dc@dc6-dpms.html> (i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) * igt@kms_atomic_transition@plane-all-modeset-transition: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_atomic_transition@plane-all-modeset-transition.html> (i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_atomic_transition@plane-all-modeset-transition.html> (i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>) * igt@kms_big_fb@4-tiled-16bpp-rotate-180: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) +2 similar issues * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1 similar issue * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +151 similar issues * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (fdo#110723<https://bugs.freedesktop.org/show_bug.cgi?id=110723>) * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html> (i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 similar issue * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +7 similar issues * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +10 similar issues * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +2 similar issues * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +5 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +6 similar issues * igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1 similar issue * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +72 similar issues * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1 similar issue * igt@kms_color@pipe-d-gamma: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_color@pipe-d-gamma.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#1149<https://gitlab.freedesktop.org/drm/intel/issues/1149>) * igt@kms_color_chamelium@pipe-a-gamma: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb5/igt@kms_color_chamelium@pipe-a-gamma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +6 similar issues * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_color_chamelium@pipe-a-gamma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * igt@kms_color_chamelium@pipe-b-degamma: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_color_chamelium@pipe-b-degamma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +6 similar issues * igt@kms_color_chamelium@pipe-c-ctm-0-75: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_color_chamelium@pipe-c-ctm-0-75.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +10 similar issues * igt@kms_color_chamelium@pipe-c-gamma: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_color_chamelium@pipe-c-gamma.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +2 similar issues * igt@kms_color_chamelium@pipe-d-ctm-0-25: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_color_chamelium@pipe-d-ctm-0-25.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * igt@kms_content_protection@srm: * shard-kbl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_content_protection@srm.html> (i915#1319<https://gitlab.freedesktop.org/drm/intel/issues/1319>) * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +16 similar issues * igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279>) +1 similar issue * igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 similar issue * igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding.html> (fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279> / i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 similar issue * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html> (i915#3319<https://gitlab.freedesktop.org/drm/intel/issues/3319>) * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html> (i915#72<https://gitlab.freedesktop.org/drm/intel/issues/72>) * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) * igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html> (i915#5287<https://gitlab.freedesktop.org/drm/intel/issues/5287>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html> (i915#5287<https://gitlab.freedesktop.org/drm/intel/issues/5287>) * igt@kms_flip@2x-nonexisting-fb-interruptible: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +2 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +1 similar issue * igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html> (i915#2122<https://gitlab.freedesktop.org/drm/intel/issues/2122>) * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +5 similar issues * igt@kms_flip@flip-vs-suspend@c-dp1: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@kms_flip@flip-vs-suspend@c-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@kms_flip@flip-vs-suspend@c-dp1.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +1 similar issue * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +9 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +100 similar issues * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +11 similar issues * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) +1 similar issue * igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) +1 similar issue * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265<https://gitlab.freedesktop.org/drm/intel/issues/265>) * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265<https://gitlab.freedesktop.org/drm/intel/issues/265>) * igt@kms_psr2_su@frontbuffer-xrgb8888: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) +2 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109642<https://bugs.freedesktop.org/show_bug.cgi?id=109642> / fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) +2 similar issues * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#1911<https://gitlab.freedesktop.org/drm/intel/issues/1911>) * igt@kms_psr@psr2_no_drrs: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr@psr2_no_drrs.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@kms_psr@psr2_no_drrs.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) * igt@nouveau_crc@pipe-b-source-outp-inactive: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@nouveau_crc@pipe-b-source-outp-inactive.html> (i915#2530<https://gitlab.freedesktop.org/drm/intel/issues/2530>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@nouveau_crc@pipe-b-source-outp-inactive.html> (i915#2530<https://gitlab.freedesktop.org/drm/intel/issues/2530>) * igt@prime_nv_api@i915_self_import: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@prime_nv_api@i915_self_import.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@prime_nv_api@i915_self_import.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +1 similar issue * igt@prime_nv_pcopy@test3_5: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@prime_nv_pcopy@test3_5.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +193 similar issues * igt@sw_sync@sync_merge: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sw_sync@sync_merge.html> (i915#6140<https://gitlab.freedesktop.org/drm/intel/issues/6140>) * igt@sysfs_clients@create: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@sysfs_clients@create.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * igt@sysfs_clients@recycle-many: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sysfs_clients@recycle-many.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue * igt@sysfs_clients@split-50: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@sysfs_clients@split-50.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk8/igt@sysfs_clients@split-50.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@sysfs_clients@split-50.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) Possible fixes * igt@gem_ctx_exec@basic-nohangcheck: * {shard-tglu}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268<https://gitlab.freedesktop.org/drm/intel/issues/6268>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-1/igt@gem_ctx_exec@basic-nohangcheck.html> * igt@gem_ctx_persistence@legacy-engines-hang@blt: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html> (i915#6252<https://gitlab.freedesktop.org/drm/intel/issues/6252>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-4/igt@gem_ctx_persistence@legacy-engines-hang@blt.html> * igt@gem_ctx_persistence@legacy-engines-hostile@bsd1: * {shard-dg1}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-18/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html> (i915#4883<https://gitlab.freedesktop.org/drm/intel/issues/4883>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-16/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html> +1 similar issue * igt@gem_eio@kms: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_eio@kms.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_eio@kms.html> * igt@gem_exec_balancer@parallel-balancer: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb6/igt@gem_exec_balancer@parallel-balancer.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html> * igt@gem_exec_fair@basic-none@vcs1: * shard-kbl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-none@vcs1.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_exec_fair@basic-none@vcs1.html> +2 similar issues * igt@gem_exec_flush@basic-batch-kernel-default-cmd: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> (fdo#109313<https://bugs.freedesktop.org/show_bug.cgi?id=109313>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> * igt@gem_exec_reloc@basic-write-read-noreloc: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html> +4 similar issues * igt@gem_exec_whisper@basic-contexts-priority-all: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk6/igt@gem_exec_whisper@basic-contexts-priority-all.html> (i915#118<https://gitlab.freedesktop.org/drm/intel/issues/118>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_whisper@basic-contexts-priority-all.html> * igt@gem_partial_pwrite_pread@writes-after-reads: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html> +2 similar issues * igt@gen9_exec_parse@allowed-single: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk1/igt@gen9_exec_parse@allowed-single.html> (i915#5566<https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716<https://gitlab.freedesktop.org/drm/intel/issues/716>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@gen9_exec_parse@allowed-single.html> * igt@gen9_exec_parse@bb-chained: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html> +1 similar issue * igt@i915_pm_dc@dc6-psr: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@i915_pm_dc@dc6-psr.html> (i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@i915_pm_dc@dc6-psr.html> * igt@i915_pm_rpm@dpms-non-lpsp: * {shard-dg1}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-16/igt@i915_pm_rpm@dpms-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-18/igt@i915_pm_rpm@dpms-non-lpsp.html> * igt@i915_pm_rpm@system-suspend-execbuf: * shard-kbl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html> * igt@i915_selftest@live@hangcheck: * shard-snb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-snb4/igt@i915_selftest@live@hangcheck.html> (i915#3921<https://gitlab.freedesktop.org/drm/intel/issues/3921>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb2/igt@i915_selftest@live@hangcheck.html> * igt@i915_suspend@fence-restore-untiled: * shard-kbl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@i915_suspend@fence-restore-untiled.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@i915_suspend@fence-restore-untiled.html> +1 similar issue * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> +3 similar issues * igt@kms_color@pipe-a-ctm-red-to-blue: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_color@pipe-a-ctm-red-to-blue.html> (i915#1149<https://gitlab.freedesktop.org/drm/intel/issues/1149> / i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_color@pipe-a-ctm-red-to-blue.html> * igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html> (fdo#112022<https://bugs.freedesktop.org/show_bug.cgi?id=112022> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html> +1 similar issue * igt@kms_cursor_legacy@cursora-vs-flipa-varying-size: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html> +1 similar issue * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html> (fdo#111314<https://bugs.freedesktop.org/show_bug.cgi?id=111314> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098> / i915#4369<https://gitlab.freedesktop.org/drm/intel/issues/4369>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html> +2 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html> +1 similar issue * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: * shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html> * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html> +2 similar issues * igt@kms_psr@psr2_cursor_mmap_cpu: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_cpu.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html> * igt@kms_psr@suspend: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_psr@suspend.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_psr@suspend.html> * igt@kms_vblank@pipe-a-accuracy-idle: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@kms_vblank@pipe-a-accuracy-idle.html> (i915#43<https://gitlab.freedesktop.org/drm/intel/issues/43>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_vblank@pipe-a-accuracy-idle.html> * igt@kms_vblank@pipe-b-query-forked: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_vblank@pipe-b-query-forked.html> (i915#1845<https://gitlab.freedesktop.org/drm/intel/issues/1845> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_vblank@pipe-b-query-forked.html> +4 similar issues Warnings * igt@gem_exec_fair@basic-none-rrul@rcs0: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@gem_exec_fair@basic-none-rrul@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_fair@basic-none-rrul@rcs0.html> (i915#2852<https://gitlab.freedesktop.org/drm/intel/issues/2852>) * igt@gem_exec_fair@basic-none@vcs0: * shard-tglb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@gem_exec_fair@basic-none@vcs0.html> (i915#2848<https://gitlab.freedesktop.org/drm/intel/issues/2848>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_exec_fair@basic-none@vcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +4 similar issues * igt@gem_exec_fair@basic-pace-share@rcs0: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2848<https://gitlab.freedesktop.org/drm/intel/issues/2848>) * igt@i915_pm_dc@dc3co-vpb-simulation: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#588<https://gitlab.freedesktop.org/drm/intel/issues/588>) * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> (fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_psr2_su@page_flip-p010: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb4/igt@kms_psr2_su@page_flip-p010.html> (fdo#109642<https://bugs.freedesktop.org/show_bug.cgi?id=109642> / fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr2_su@page_flip-p010.html> (i915#5939<https://gitlab.freedesktop.org/drm/intel/issues/5939>) * igt@runner@aborted: * shard-apl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) * shard-kbl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@runner@aborted.html>) (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_6537 -> IGTPW_7354 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_11788: ec6f2ba27fe4ed0f5f6aca3977f62793b65bb1b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7354: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html IGT_6537: 331658a8475c8b0c0f7ffe5268a7318ef83da34e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit [-- Attachment #2: Type: text/html, Size: 105462 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) 2022-06-22 5:03 ` Tauro, Riana @ 2022-06-23 5:23 ` Vudum, Lakshminarayana 2022-06-23 5:25 ` Tauro, Riana 0 siblings, 1 reply; 19+ messages in thread From: Vudum, Lakshminarayana @ 2022-06-23 5:23 UTC (permalink / raw) To: Tauro, Riana, igt-dev@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 55730 bytes --] Filed a new issue for the sporadic failure https://gitlab.freedesktop.org/drm/intel/-/issues/6283 igt@device_reset@unbind-reset-rebind - incomplete - No warnings/errors igt@i915_pm_rc6_residency@rc6-idle@rcs0 is not yet in CI bug log. I have seen this failure in the past, team can fix the filter once it appears in post-merge and also in CI bug log. Re-reported earlier today but yet to reflect the change. Still shows old results. Thanks, Lakshmi. From: Tauro, Riana <riana.tauro@intel.com> Sent: Tuesday, June 21, 2022 10:04 PM To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Subject: RE: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) Hi @Vudum, Lakshminarayana<mailto:Lakshminarayana.Vudum@intel.com> This issue is not related to the changes * igt@device_reset@unbind-reset-rebind: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb8/igt@device_reset@unbind-reset-rebind.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@device_reset@unbind-reset-rebind.html> The below warnings were part of the test before as well. Not introduced with the new changes.Could you re-report the results. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11787/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle.html * {igt@i915_pm_rc6_residency@rc6-idle@rcs0} (NEW): * shard-tglb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * shard-iclb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * {shard-rkl}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> * {shard-tglu}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues Thanks Riana Tauro From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>> Sent: Wednesday, June 22, 2022 8:34 AM To: Tauro, Riana <riana.tauro@intel.com<mailto:riana.tauro@intel.com>> Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> Subject: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) Patch Details Series: Extend i915_pm_rc6_residency (rev2) URL: https://patchwork.freedesktop.org/series/105413/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html CI Bug Log - changes from CI_DRM_11788_full -> IGTPW_7354_full Summary FAILURE Serious unknown changes coming with IGTPW_7354_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_7354_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html Participating hosts (13 -> 10) Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues Here are the unknown changes that may have been introduced in IGTPW_7354_full: IGT changes Possible regressions * igt@device_reset@unbind-reset-rebind: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb8/igt@device_reset@unbind-reset-rebind.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@device_reset@unbind-reset-rebind.html> * {igt@i915_pm_rc6_residency@rc6-idle@rcs0} (NEW): * shard-tglb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * shard-iclb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * {shard-rkl}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> * {shard-tglu}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@device_reset@unbind-reset-rebind: * {shard-rkl}: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@device_reset@unbind-reset-rebind.html> * {igt@drm_fdinfo@virtual-busy-idle}: * {shard-dg1}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-19/igt@drm_fdinfo@virtual-busy-idle.html> +2 similar issues * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: * {shard-rkl}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html> * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: * {shard-dg1}: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-19/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html> New tests New tests have been introduced between CI_DRM_11788_full and IGTPW_7354_full: New IGT tests (4) * igt@i915_pm_rc6_residency@rc6-idle@bcs0: * Statuses : 6 pass(s) 3 warn(s) * Exec time: [12.20, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@rcs0: * Statuses : 5 pass(s) 4 warn(s) * Exec time: [12.20, 12.26] s * igt@i915_pm_rc6_residency@rc6-idle@vcs0: * Statuses : 6 pass(s) 3 warn(s) * Exec time: [12.19, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@vecs0: * Statuses : 5 pass(s) 3 warn(s) * Exec time: [12.20, 12.26] s Known issues Here are the changes found in IGTPW_7354_full that come from known issues: IGT changes Issues hit * igt@gem_ctx_persistence@engines-hang: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@gem_ctx_persistence@engines-hang.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) * igt@gem_ctx_sseu@mmap-args: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_ctx_sseu@mmap-args.html> (i915#280<https://gitlab.freedesktop.org/drm/intel/issues/280>) * igt@gem_eio@in-flight-suspend: * shard-kbl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@gem_eio@in-flight-suspend.html> (i915#3614<https://gitlab.freedesktop.org/drm/intel/issues/3614>) * igt@gem_eio@unwedge-stress: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_eio@unwedge-stress.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gem_eio@unwedge-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) * igt@gem_exec_balancer@parallel-ordering: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@gem_exec_balancer@parallel-ordering.html> (i915#6117<https://gitlab.freedesktop.org/drm/intel/issues/6117>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_balancer@parallel-ordering.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) * igt@gem_exec_fair@basic-none-share@rcs0: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_exec_fair@basic-none-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_exec_fair@basic-none-solo@rcs0: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@gem_exec_fair@basic-none-solo@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_exec_fair@basic-pace@rcs0: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +2 similar issues * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-pace@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1 similar issue * igt@gem_exec_fair@basic-pace@vecs0: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_exec_fair@basic-pace@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_exec_fair@basic-pace@vecs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_lmem_swapping@parallel-random-verify: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl3/igt@gem_lmem_swapping@parallel-random-verify.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +2 similar issues * igt@gem_lmem_swapping@verify-ccs: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@gem_lmem_swapping@verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@gem_lmem_swapping@verify-ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_lmem_swapping@verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) * igt@gem_mmap_gtt@coherency: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_mmap_gtt@coherency.html> (fdo#111656<https://bugs.freedesktop.org/show_bug.cgi?id=111656>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_mmap_gtt@coherency.html> (fdo#109292<https://bugs.freedesktop.org/show_bug.cgi?id=109292>) * igt@gem_pwrite@basic-exhaustion: * shard-kbl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html> (i915#2658<https://gitlab.freedesktop.org/drm/intel/issues/2658>) * igt@gem_pxp@create-regular-buffer: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@gem_pxp@create-regular-buffer.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1 similar issue * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1 similar issue * igt@gem_render_copy@linear-to-vebox-yf-tiled: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@gem_render_copy@linear-to-vebox-yf-tiled.html> (i915#768<https://gitlab.freedesktop.org/drm/intel/issues/768>) +1 similar issue * igt@gem_userptr_blits@coherency-sync: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@coherency-sync.html> (fdo#109290<https://bugs.freedesktop.org/show_bug.cgi?id=109290>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@coherency-sync.html> (fdo#110542<https://bugs.freedesktop.org/show_bug.cgi?id=110542>) * igt@gem_userptr_blits@dmabuf-sync: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gem_userptr_blits@dmabuf-sync.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@gem_userptr_blits@dmabuf-sync.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * igt@gem_userptr_blits@invalid-mmap-offset-unsync: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) * igt@gen3_render_tiledx_blits: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gen3_render_tiledx_blits.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gen3_render_tiledx_blits.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) * igt@gen9_exec_parse@allowed-single: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@gen9_exec_parse@allowed-single.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gen9_exec_parse@allowed-single.html> (i915#5566<https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716<https://gitlab.freedesktop.org/drm/intel/issues/716>) * igt@gen9_exec_parse@secure-batches: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb1/igt@gen9_exec_parse@secure-batches.html> (i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1 similar issue * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gen9_exec_parse@secure-batches.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1 similar issue * igt@i915_pm_dc@dc6-dpms: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html> (i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_dc@dc6-dpms.html> (i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) * igt@kms_atomic_transition@plane-all-modeset-transition: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_atomic_transition@plane-all-modeset-transition.html> (i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_atomic_transition@plane-all-modeset-transition.html> (i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>) * igt@kms_big_fb@4-tiled-16bpp-rotate-180: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) +2 similar issues * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1 similar issue * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +151 similar issues * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (fdo#110723<https://bugs.freedesktop.org/show_bug.cgi?id=110723>) * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html> (i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 similar issue * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +7 similar issues * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +10 similar issues * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +2 similar issues * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +5 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +6 similar issues * igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1 similar issue * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +72 similar issues * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1 similar issue * igt@kms_color@pipe-d-gamma: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_color@pipe-d-gamma.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#1149<https://gitlab.freedesktop.org/drm/intel/issues/1149>) * igt@kms_color_chamelium@pipe-a-gamma: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb5/igt@kms_color_chamelium@pipe-a-gamma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +6 similar issues * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_color_chamelium@pipe-a-gamma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * igt@kms_color_chamelium@pipe-b-degamma: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_color_chamelium@pipe-b-degamma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +6 similar issues * igt@kms_color_chamelium@pipe-c-ctm-0-75: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_color_chamelium@pipe-c-ctm-0-75.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +10 similar issues * igt@kms_color_chamelium@pipe-c-gamma: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_color_chamelium@pipe-c-gamma.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +2 similar issues * igt@kms_color_chamelium@pipe-d-ctm-0-25: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_color_chamelium@pipe-d-ctm-0-25.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * igt@kms_content_protection@srm: * shard-kbl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_content_protection@srm.html> (i915#1319<https://gitlab.freedesktop.org/drm/intel/issues/1319>) * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +16 similar issues * igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279>) +1 similar issue * igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 similar issue * igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding.html> (fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279> / i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 similar issue * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html> (i915#3319<https://gitlab.freedesktop.org/drm/intel/issues/3319>) * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html> (i915#72<https://gitlab.freedesktop.org/drm/intel/issues/72>) * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) * igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html> (i915#5287<https://gitlab.freedesktop.org/drm/intel/issues/5287>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html> (i915#5287<https://gitlab.freedesktop.org/drm/intel/issues/5287>) * igt@kms_flip@2x-nonexisting-fb-interruptible: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +2 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +1 similar issue * igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html> (i915#2122<https://gitlab.freedesktop.org/drm/intel/issues/2122>) * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +5 similar issues * igt@kms_flip@flip-vs-suspend@c-dp1: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@kms_flip@flip-vs-suspend@c-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@kms_flip@flip-vs-suspend@c-dp1.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +1 similar issue * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +9 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +100 similar issues * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +11 similar issues * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) +1 similar issue * igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) +1 similar issue * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265<https://gitlab.freedesktop.org/drm/intel/issues/265>) * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265<https://gitlab.freedesktop.org/drm/intel/issues/265>) * igt@kms_psr2_su@frontbuffer-xrgb8888: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) +2 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109642<https://bugs.freedesktop.org/show_bug.cgi?id=109642> / fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) +2 similar issues * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#1911<https://gitlab.freedesktop.org/drm/intel/issues/1911>) * igt@kms_psr@psr2_no_drrs: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr@psr2_no_drrs.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@kms_psr@psr2_no_drrs.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) * igt@nouveau_crc@pipe-b-source-outp-inactive: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@nouveau_crc@pipe-b-source-outp-inactive.html> (i915#2530<https://gitlab.freedesktop.org/drm/intel/issues/2530>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@nouveau_crc@pipe-b-source-outp-inactive.html> (i915#2530<https://gitlab.freedesktop.org/drm/intel/issues/2530>) * igt@prime_nv_api@i915_self_import: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@prime_nv_api@i915_self_import.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@prime_nv_api@i915_self_import.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +1 similar issue * igt@prime_nv_pcopy@test3_5: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@prime_nv_pcopy@test3_5.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +193 similar issues * igt@sw_sync@sync_merge: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sw_sync@sync_merge.html> (i915#6140<https://gitlab.freedesktop.org/drm/intel/issues/6140>) * igt@sysfs_clients@create: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@sysfs_clients@create.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * igt@sysfs_clients@recycle-many: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sysfs_clients@recycle-many.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue * igt@sysfs_clients@split-50: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@sysfs_clients@split-50.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk8/igt@sysfs_clients@split-50.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@sysfs_clients@split-50.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) Possible fixes * igt@gem_ctx_exec@basic-nohangcheck: * {shard-tglu}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268<https://gitlab.freedesktop.org/drm/intel/issues/6268>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-1/igt@gem_ctx_exec@basic-nohangcheck.html> * igt@gem_ctx_persistence@legacy-engines-hang@blt: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html> (i915#6252<https://gitlab.freedesktop.org/drm/intel/issues/6252>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-4/igt@gem_ctx_persistence@legacy-engines-hang@blt.html> * igt@gem_ctx_persistence@legacy-engines-hostile@bsd1: * {shard-dg1}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-18/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html> (i915#4883<https://gitlab.freedesktop.org/drm/intel/issues/4883>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-16/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html> +1 similar issue * igt@gem_eio@kms: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_eio@kms.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_eio@kms.html> * igt@gem_exec_balancer@parallel-balancer: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb6/igt@gem_exec_balancer@parallel-balancer.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html> * igt@gem_exec_fair@basic-none@vcs1: * shard-kbl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-none@vcs1.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_exec_fair@basic-none@vcs1.html> +2 similar issues * igt@gem_exec_flush@basic-batch-kernel-default-cmd: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> (fdo#109313<https://bugs.freedesktop.org/show_bug.cgi?id=109313>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> * igt@gem_exec_reloc@basic-write-read-noreloc: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html> +4 similar issues * igt@gem_exec_whisper@basic-contexts-priority-all: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk6/igt@gem_exec_whisper@basic-contexts-priority-all.html> (i915#118<https://gitlab.freedesktop.org/drm/intel/issues/118>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_whisper@basic-contexts-priority-all.html> * igt@gem_partial_pwrite_pread@writes-after-reads: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html> +2 similar issues * igt@gen9_exec_parse@allowed-single: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk1/igt@gen9_exec_parse@allowed-single.html> (i915#5566<https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716<https://gitlab.freedesktop.org/drm/intel/issues/716>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@gen9_exec_parse@allowed-single.html> * igt@gen9_exec_parse@bb-chained: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html> +1 similar issue * igt@i915_pm_dc@dc6-psr: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@i915_pm_dc@dc6-psr.html> (i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@i915_pm_dc@dc6-psr.html> * igt@i915_pm_rpm@dpms-non-lpsp: * {shard-dg1}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-16/igt@i915_pm_rpm@dpms-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-18/igt@i915_pm_rpm@dpms-non-lpsp.html> * igt@i915_pm_rpm@system-suspend-execbuf: * shard-kbl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html> * igt@i915_selftest@live@hangcheck: * shard-snb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-snb4/igt@i915_selftest@live@hangcheck.html> (i915#3921<https://gitlab.freedesktop.org/drm/intel/issues/3921>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb2/igt@i915_selftest@live@hangcheck.html> * igt@i915_suspend@fence-restore-untiled: * shard-kbl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@i915_suspend@fence-restore-untiled.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@i915_suspend@fence-restore-untiled.html> +1 similar issue * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> +3 similar issues * igt@kms_color@pipe-a-ctm-red-to-blue: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_color@pipe-a-ctm-red-to-blue.html> (i915#1149<https://gitlab.freedesktop.org/drm/intel/issues/1149> / i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_color@pipe-a-ctm-red-to-blue.html> * igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html> (fdo#112022<https://bugs.freedesktop.org/show_bug.cgi?id=112022> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html> +1 similar issue * igt@kms_cursor_legacy@cursora-vs-flipa-varying-size: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html> +1 similar issue * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html> (fdo#111314<https://bugs.freedesktop.org/show_bug.cgi?id=111314> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098> / i915#4369<https://gitlab.freedesktop.org/drm/intel/issues/4369>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html> +2 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html> +1 similar issue * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: * shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html> * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html> +2 similar issues * igt@kms_psr@psr2_cursor_mmap_cpu: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_cpu.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html> * igt@kms_psr@suspend: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_psr@suspend.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_psr@suspend.html> * igt@kms_vblank@pipe-a-accuracy-idle: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@kms_vblank@pipe-a-accuracy-idle.html> (i915#43<https://gitlab.freedesktop.org/drm/intel/issues/43>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_vblank@pipe-a-accuracy-idle.html> * igt@kms_vblank@pipe-b-query-forked: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_vblank@pipe-b-query-forked.html> (i915#1845<https://gitlab.freedesktop.org/drm/intel/issues/1845> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_vblank@pipe-b-query-forked.html> +4 similar issues Warnings * igt@gem_exec_fair@basic-none-rrul@rcs0: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@gem_exec_fair@basic-none-rrul@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_fair@basic-none-rrul@rcs0.html> (i915#2852<https://gitlab.freedesktop.org/drm/intel/issues/2852>) * igt@gem_exec_fair@basic-none@vcs0: * shard-tglb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@gem_exec_fair@basic-none@vcs0.html> (i915#2848<https://gitlab.freedesktop.org/drm/intel/issues/2848>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_exec_fair@basic-none@vcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +4 similar issues * igt@gem_exec_fair@basic-pace-share@rcs0: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2848<https://gitlab.freedesktop.org/drm/intel/issues/2848>) * igt@i915_pm_dc@dc3co-vpb-simulation: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#588<https://gitlab.freedesktop.org/drm/intel/issues/588>) * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> (fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_psr2_su@page_flip-p010: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb4/igt@kms_psr2_su@page_flip-p010.html> (fdo#109642<https://bugs.freedesktop.org/show_bug.cgi?id=109642> / fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr2_su@page_flip-p010.html> (i915#5939<https://gitlab.freedesktop.org/drm/intel/issues/5939>) * igt@runner@aborted: * shard-apl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) * shard-kbl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@runner@aborted.html>) (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_6537 -> IGTPW_7354 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_11788: ec6f2ba27fe4ed0f5f6aca3977f62793b65bb1b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7354: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html IGT_6537: 331658a8475c8b0c0f7ffe5268a7318ef83da34e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit [-- Attachment #2: Type: text/html, Size: 120307 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) 2022-06-23 5:23 ` Vudum, Lakshminarayana @ 2022-06-23 5:25 ` Tauro, Riana 2022-06-23 13:24 ` Tauro, Riana 0 siblings, 1 reply; 19+ messages in thread From: Tauro, Riana @ 2022-06-23 5:25 UTC (permalink / raw) To: Vudum, Lakshminarayana, igt-dev@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 56216 bytes --] The warning should be a part of igt@i915_pm_rc6_residency@rc6-idle earlier. Sure. Thank you Thanks Riana Tauro From: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Sent: Thursday, June 23, 2022 10:53 AM To: Tauro, Riana <riana.tauro@intel.com>; igt-dev@lists.freedesktop.org Subject: RE: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) Filed a new issue for the sporadic failure https://gitlab.freedesktop.org/drm/intel/-/issues/6283 igt@device_reset@unbind-reset-rebind - incomplete - No warnings/errors igt@i915_pm_rc6_residency@rc6-idle@rcs0 is not yet in CI bug log. I have seen this failure in the past, team can fix the filter once it appears in post-merge and also in CI bug log. Re-reported earlier today but yet to reflect the change. Still shows old results. Thanks, Lakshmi. From: Tauro, Riana <riana.tauro@intel.com<mailto:riana.tauro@intel.com>> Sent: Tuesday, June 21, 2022 10:04 PM To: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>> Subject: RE: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) Hi @Vudum, Lakshminarayana<mailto:Lakshminarayana.Vudum@intel.com> This issue is not related to the changes * igt@device_reset@unbind-reset-rebind: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb8/igt@device_reset@unbind-reset-rebind.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@device_reset@unbind-reset-rebind.html> The below warnings were part of the test before as well. Not introduced with the new changes.Could you re-report the results. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11787/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle.html * {igt@i915_pm_rc6_residency@rc6-idle@rcs0} (NEW): * shard-tglb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * shard-iclb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * {shard-rkl}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> * {shard-tglu}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues Thanks Riana Tauro From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>> Sent: Wednesday, June 22, 2022 8:34 AM To: Tauro, Riana <riana.tauro@intel.com<mailto:riana.tauro@intel.com>> Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> Subject: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) Patch Details Series: Extend i915_pm_rc6_residency (rev2) URL: https://patchwork.freedesktop.org/series/105413/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html CI Bug Log - changes from CI_DRM_11788_full -> IGTPW_7354_full Summary FAILURE Serious unknown changes coming with IGTPW_7354_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_7354_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html Participating hosts (13 -> 10) Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues Here are the unknown changes that may have been introduced in IGTPW_7354_full: IGT changes Possible regressions * igt@device_reset@unbind-reset-rebind: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb8/igt@device_reset@unbind-reset-rebind.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@device_reset@unbind-reset-rebind.html> * {igt@i915_pm_rc6_residency@rc6-idle@rcs0} (NEW): * shard-tglb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * shard-iclb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * {shard-rkl}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> * {shard-tglu}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@device_reset@unbind-reset-rebind: * {shard-rkl}: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@device_reset@unbind-reset-rebind.html> * {igt@drm_fdinfo@virtual-busy-idle}: * {shard-dg1}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-19/igt@drm_fdinfo@virtual-busy-idle.html> +2 similar issues * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: * {shard-rkl}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html> * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: * {shard-dg1}: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-19/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html> New tests New tests have been introduced between CI_DRM_11788_full and IGTPW_7354_full: New IGT tests (4) * igt@i915_pm_rc6_residency@rc6-idle@bcs0: * Statuses : 6 pass(s) 3 warn(s) * Exec time: [12.20, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@rcs0: * Statuses : 5 pass(s) 4 warn(s) * Exec time: [12.20, 12.26] s * igt@i915_pm_rc6_residency@rc6-idle@vcs0: * Statuses : 6 pass(s) 3 warn(s) * Exec time: [12.19, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@vecs0: * Statuses : 5 pass(s) 3 warn(s) * Exec time: [12.20, 12.26] s Known issues Here are the changes found in IGTPW_7354_full that come from known issues: IGT changes Issues hit * igt@gem_ctx_persistence@engines-hang: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@gem_ctx_persistence@engines-hang.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) * igt@gem_ctx_sseu@mmap-args: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_ctx_sseu@mmap-args.html> (i915#280<https://gitlab.freedesktop.org/drm/intel/issues/280>) * igt@gem_eio@in-flight-suspend: * shard-kbl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@gem_eio@in-flight-suspend.html> (i915#3614<https://gitlab.freedesktop.org/drm/intel/issues/3614>) * igt@gem_eio@unwedge-stress: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_eio@unwedge-stress.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gem_eio@unwedge-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) * igt@gem_exec_balancer@parallel-ordering: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@gem_exec_balancer@parallel-ordering.html> (i915#6117<https://gitlab.freedesktop.org/drm/intel/issues/6117>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_balancer@parallel-ordering.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) * igt@gem_exec_fair@basic-none-share@rcs0: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_exec_fair@basic-none-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_exec_fair@basic-none-solo@rcs0: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@gem_exec_fair@basic-none-solo@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_exec_fair@basic-pace@rcs0: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +2 similar issues * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-pace@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1 similar issue * igt@gem_exec_fair@basic-pace@vecs0: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_exec_fair@basic-pace@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_exec_fair@basic-pace@vecs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_lmem_swapping@parallel-random-verify: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl3/igt@gem_lmem_swapping@parallel-random-verify.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +2 similar issues * igt@gem_lmem_swapping@verify-ccs: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@gem_lmem_swapping@verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@gem_lmem_swapping@verify-ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_lmem_swapping@verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) * igt@gem_mmap_gtt@coherency: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_mmap_gtt@coherency.html> (fdo#111656<https://bugs.freedesktop.org/show_bug.cgi?id=111656>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_mmap_gtt@coherency.html> (fdo#109292<https://bugs.freedesktop.org/show_bug.cgi?id=109292>) * igt@gem_pwrite@basic-exhaustion: * shard-kbl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html> (i915#2658<https://gitlab.freedesktop.org/drm/intel/issues/2658>) * igt@gem_pxp@create-regular-buffer: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@gem_pxp@create-regular-buffer.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1 similar issue * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1 similar issue * igt@gem_render_copy@linear-to-vebox-yf-tiled: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@gem_render_copy@linear-to-vebox-yf-tiled.html> (i915#768<https://gitlab.freedesktop.org/drm/intel/issues/768>) +1 similar issue * igt@gem_userptr_blits@coherency-sync: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@coherency-sync.html> (fdo#109290<https://bugs.freedesktop.org/show_bug.cgi?id=109290>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@coherency-sync.html> (fdo#110542<https://bugs.freedesktop.org/show_bug.cgi?id=110542>) * igt@gem_userptr_blits@dmabuf-sync: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gem_userptr_blits@dmabuf-sync.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@gem_userptr_blits@dmabuf-sync.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * igt@gem_userptr_blits@invalid-mmap-offset-unsync: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) * igt@gen3_render_tiledx_blits: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gen3_render_tiledx_blits.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gen3_render_tiledx_blits.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) * igt@gen9_exec_parse@allowed-single: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@gen9_exec_parse@allowed-single.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gen9_exec_parse@allowed-single.html> (i915#5566<https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716<https://gitlab.freedesktop.org/drm/intel/issues/716>) * igt@gen9_exec_parse@secure-batches: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb1/igt@gen9_exec_parse@secure-batches.html> (i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1 similar issue * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gen9_exec_parse@secure-batches.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1 similar issue * igt@i915_pm_dc@dc6-dpms: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html> (i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_dc@dc6-dpms.html> (i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) * igt@kms_atomic_transition@plane-all-modeset-transition: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_atomic_transition@plane-all-modeset-transition.html> (i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_atomic_transition@plane-all-modeset-transition.html> (i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>) * igt@kms_big_fb@4-tiled-16bpp-rotate-180: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) +2 similar issues * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1 similar issue * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +151 similar issues * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (fdo#110723<https://bugs.freedesktop.org/show_bug.cgi?id=110723>) * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html> (i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 similar issue * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +7 similar issues * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +10 similar issues * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +2 similar issues * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +5 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +6 similar issues * igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1 similar issue * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +72 similar issues * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1 similar issue * igt@kms_color@pipe-d-gamma: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_color@pipe-d-gamma.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#1149<https://gitlab.freedesktop.org/drm/intel/issues/1149>) * igt@kms_color_chamelium@pipe-a-gamma: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb5/igt@kms_color_chamelium@pipe-a-gamma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +6 similar issues * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_color_chamelium@pipe-a-gamma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * igt@kms_color_chamelium@pipe-b-degamma: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_color_chamelium@pipe-b-degamma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +6 similar issues * igt@kms_color_chamelium@pipe-c-ctm-0-75: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_color_chamelium@pipe-c-ctm-0-75.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +10 similar issues * igt@kms_color_chamelium@pipe-c-gamma: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_color_chamelium@pipe-c-gamma.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +2 similar issues * igt@kms_color_chamelium@pipe-d-ctm-0-25: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_color_chamelium@pipe-d-ctm-0-25.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * igt@kms_content_protection@srm: * shard-kbl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_content_protection@srm.html> (i915#1319<https://gitlab.freedesktop.org/drm/intel/issues/1319>) * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +16 similar issues * igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279>) +1 similar issue * igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 similar issue * igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding.html> (fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279> / i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 similar issue * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html> (i915#3319<https://gitlab.freedesktop.org/drm/intel/issues/3319>) * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html> (i915#72<https://gitlab.freedesktop.org/drm/intel/issues/72>) * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) * igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html> (i915#5287<https://gitlab.freedesktop.org/drm/intel/issues/5287>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html> (i915#5287<https://gitlab.freedesktop.org/drm/intel/issues/5287>) * igt@kms_flip@2x-nonexisting-fb-interruptible: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +2 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +1 similar issue * igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html> (i915#2122<https://gitlab.freedesktop.org/drm/intel/issues/2122>) * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +5 similar issues * igt@kms_flip@flip-vs-suspend@c-dp1: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@kms_flip@flip-vs-suspend@c-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@kms_flip@flip-vs-suspend@c-dp1.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +1 similar issue * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +9 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +100 similar issues * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +11 similar issues * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) +1 similar issue * igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) +1 similar issue * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265<https://gitlab.freedesktop.org/drm/intel/issues/265>) * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265<https://gitlab.freedesktop.org/drm/intel/issues/265>) * igt@kms_psr2_su@frontbuffer-xrgb8888: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) +2 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109642<https://bugs.freedesktop.org/show_bug.cgi?id=109642> / fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) +2 similar issues * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#1911<https://gitlab.freedesktop.org/drm/intel/issues/1911>) * igt@kms_psr@psr2_no_drrs: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr@psr2_no_drrs.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@kms_psr@psr2_no_drrs.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) * igt@nouveau_crc@pipe-b-source-outp-inactive: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@nouveau_crc@pipe-b-source-outp-inactive.html> (i915#2530<https://gitlab.freedesktop.org/drm/intel/issues/2530>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@nouveau_crc@pipe-b-source-outp-inactive.html> (i915#2530<https://gitlab.freedesktop.org/drm/intel/issues/2530>) * igt@prime_nv_api@i915_self_import: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@prime_nv_api@i915_self_import.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@prime_nv_api@i915_self_import.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +1 similar issue * igt@prime_nv_pcopy@test3_5: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@prime_nv_pcopy@test3_5.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +193 similar issues * igt@sw_sync@sync_merge: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sw_sync@sync_merge.html> (i915#6140<https://gitlab.freedesktop.org/drm/intel/issues/6140>) * igt@sysfs_clients@create: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@sysfs_clients@create.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * igt@sysfs_clients@recycle-many: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sysfs_clients@recycle-many.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue * igt@sysfs_clients@split-50: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@sysfs_clients@split-50.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk8/igt@sysfs_clients@split-50.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@sysfs_clients@split-50.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) Possible fixes * igt@gem_ctx_exec@basic-nohangcheck: * {shard-tglu}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268<https://gitlab.freedesktop.org/drm/intel/issues/6268>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-1/igt@gem_ctx_exec@basic-nohangcheck.html> * igt@gem_ctx_persistence@legacy-engines-hang@blt: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html> (i915#6252<https://gitlab.freedesktop.org/drm/intel/issues/6252>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-4/igt@gem_ctx_persistence@legacy-engines-hang@blt.html> * igt@gem_ctx_persistence@legacy-engines-hostile@bsd1: * {shard-dg1}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-18/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html> (i915#4883<https://gitlab.freedesktop.org/drm/intel/issues/4883>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-16/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html> +1 similar issue * igt@gem_eio@kms: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_eio@kms.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_eio@kms.html> * igt@gem_exec_balancer@parallel-balancer: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb6/igt@gem_exec_balancer@parallel-balancer.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html> * igt@gem_exec_fair@basic-none@vcs1: * shard-kbl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-none@vcs1.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_exec_fair@basic-none@vcs1.html> +2 similar issues * igt@gem_exec_flush@basic-batch-kernel-default-cmd: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> (fdo#109313<https://bugs.freedesktop.org/show_bug.cgi?id=109313>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> * igt@gem_exec_reloc@basic-write-read-noreloc: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html> +4 similar issues * igt@gem_exec_whisper@basic-contexts-priority-all: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk6/igt@gem_exec_whisper@basic-contexts-priority-all.html> (i915#118<https://gitlab.freedesktop.org/drm/intel/issues/118>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_whisper@basic-contexts-priority-all.html> * igt@gem_partial_pwrite_pread@writes-after-reads: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html> +2 similar issues * igt@gen9_exec_parse@allowed-single: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk1/igt@gen9_exec_parse@allowed-single.html> (i915#5566<https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716<https://gitlab.freedesktop.org/drm/intel/issues/716>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@gen9_exec_parse@allowed-single.html> * igt@gen9_exec_parse@bb-chained: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html> +1 similar issue * igt@i915_pm_dc@dc6-psr: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@i915_pm_dc@dc6-psr.html> (i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@i915_pm_dc@dc6-psr.html> * igt@i915_pm_rpm@dpms-non-lpsp: * {shard-dg1}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-16/igt@i915_pm_rpm@dpms-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-18/igt@i915_pm_rpm@dpms-non-lpsp.html> * igt@i915_pm_rpm@system-suspend-execbuf: * shard-kbl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html> * igt@i915_selftest@live@hangcheck: * shard-snb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-snb4/igt@i915_selftest@live@hangcheck.html> (i915#3921<https://gitlab.freedesktop.org/drm/intel/issues/3921>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb2/igt@i915_selftest@live@hangcheck.html> * igt@i915_suspend@fence-restore-untiled: * shard-kbl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@i915_suspend@fence-restore-untiled.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@i915_suspend@fence-restore-untiled.html> +1 similar issue * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> +3 similar issues * igt@kms_color@pipe-a-ctm-red-to-blue: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_color@pipe-a-ctm-red-to-blue.html> (i915#1149<https://gitlab.freedesktop.org/drm/intel/issues/1149> / i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_color@pipe-a-ctm-red-to-blue.html> * igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html> (fdo#112022<https://bugs.freedesktop.org/show_bug.cgi?id=112022> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html> +1 similar issue * igt@kms_cursor_legacy@cursora-vs-flipa-varying-size: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html> +1 similar issue * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html> (fdo#111314<https://bugs.freedesktop.org/show_bug.cgi?id=111314> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098> / i915#4369<https://gitlab.freedesktop.org/drm/intel/issues/4369>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html> +2 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html> +1 similar issue * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: * shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html> * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html> +2 similar issues * igt@kms_psr@psr2_cursor_mmap_cpu: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_cpu.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html> * igt@kms_psr@suspend: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_psr@suspend.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_psr@suspend.html> * igt@kms_vblank@pipe-a-accuracy-idle: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@kms_vblank@pipe-a-accuracy-idle.html> (i915#43<https://gitlab.freedesktop.org/drm/intel/issues/43>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_vblank@pipe-a-accuracy-idle.html> * igt@kms_vblank@pipe-b-query-forked: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_vblank@pipe-b-query-forked.html> (i915#1845<https://gitlab.freedesktop.org/drm/intel/issues/1845> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_vblank@pipe-b-query-forked.html> +4 similar issues Warnings * igt@gem_exec_fair@basic-none-rrul@rcs0: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@gem_exec_fair@basic-none-rrul@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_fair@basic-none-rrul@rcs0.html> (i915#2852<https://gitlab.freedesktop.org/drm/intel/issues/2852>) * igt@gem_exec_fair@basic-none@vcs0: * shard-tglb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@gem_exec_fair@basic-none@vcs0.html> (i915#2848<https://gitlab.freedesktop.org/drm/intel/issues/2848>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_exec_fair@basic-none@vcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +4 similar issues * igt@gem_exec_fair@basic-pace-share@rcs0: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2848<https://gitlab.freedesktop.org/drm/intel/issues/2848>) * igt@i915_pm_dc@dc3co-vpb-simulation: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#588<https://gitlab.freedesktop.org/drm/intel/issues/588>) * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> (fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_psr2_su@page_flip-p010: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb4/igt@kms_psr2_su@page_flip-p010.html> (fdo#109642<https://bugs.freedesktop.org/show_bug.cgi?id=109642> / fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr2_su@page_flip-p010.html> (i915#5939<https://gitlab.freedesktop.org/drm/intel/issues/5939>) * igt@runner@aborted: * shard-apl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) * shard-kbl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@runner@aborted.html>) (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_6537 -> IGTPW_7354 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_11788: ec6f2ba27fe4ed0f5f6aca3977f62793b65bb1b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7354: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html IGT_6537: 331658a8475c8b0c0f7ffe5268a7318ef83da34e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit [-- Attachment #2: Type: text/html, Size: 121523 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) 2022-06-23 5:25 ` Tauro, Riana @ 2022-06-23 13:24 ` Tauro, Riana 2022-06-23 14:18 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 19+ messages in thread From: Tauro, Riana @ 2022-06-23 13:24 UTC (permalink / raw) To: Vudum, Lakshminarayana, igt-dev@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 56705 bytes --] Hi @Vudum, Lakshminarayana<mailto:Lakshminarayana.Vudum@intel.com> It still shows old results. Hasn’t been updated yet. Thanks Riana Tauro From: Tauro, Riana Sent: Thursday, June 23, 2022 10:56 AM To: Vudum, Lakshminarayana <Lakshminarayana.Vudum@intel.com>; igt-dev@lists.freedesktop.org Subject: RE: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) The warning should be a part of igt@i915_pm_rc6_residency@rc6-idle earlier. Sure. Thank you Thanks Riana Tauro From: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>> Sent: Thursday, June 23, 2022 10:53 AM To: Tauro, Riana <riana.tauro@intel.com<mailto:riana.tauro@intel.com>>; igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> Subject: RE: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) Filed a new issue for the sporadic failure https://gitlab.freedesktop.org/drm/intel/-/issues/6283 igt@device_reset@unbind-reset-rebind - incomplete - No warnings/errors igt@i915_pm_rc6_residency@rc6-idle@rcs0 is not yet in CI bug log. I have seen this failure in the past, team can fix the filter once it appears in post-merge and also in CI bug log. Re-reported earlier today but yet to reflect the change. Still shows old results. Thanks, Lakshmi. From: Tauro, Riana <riana.tauro@intel.com<mailto:riana.tauro@intel.com>> Sent: Tuesday, June 21, 2022 10:04 PM To: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>> Subject: RE: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) Hi @Vudum, Lakshminarayana<mailto:Lakshminarayana.Vudum@intel.com> This issue is not related to the changes * igt@device_reset@unbind-reset-rebind: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb8/igt@device_reset@unbind-reset-rebind.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@device_reset@unbind-reset-rebind.html> The below warnings were part of the test before as well. Not introduced with the new changes.Could you re-report the results. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11787/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle.html * {igt@i915_pm_rc6_residency@rc6-idle@rcs0} (NEW): * shard-tglb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * shard-iclb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * {shard-rkl}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> * {shard-tglu}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues Thanks Riana Tauro From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>> Sent: Wednesday, June 22, 2022 8:34 AM To: Tauro, Riana <riana.tauro@intel.com<mailto:riana.tauro@intel.com>> Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> Subject: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) Patch Details Series: Extend i915_pm_rc6_residency (rev2) URL: https://patchwork.freedesktop.org/series/105413/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html CI Bug Log - changes from CI_DRM_11788_full -> IGTPW_7354_full Summary FAILURE Serious unknown changes coming with IGTPW_7354_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_7354_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html Participating hosts (13 -> 10) Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues Here are the unknown changes that may have been introduced in IGTPW_7354_full: IGT changes Possible regressions * igt@device_reset@unbind-reset-rebind: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb8/igt@device_reset@unbind-reset-rebind.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@device_reset@unbind-reset-rebind.html> * {igt@i915_pm_rc6_residency@rc6-idle@rcs0} (NEW): * shard-tglb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * shard-iclb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * {shard-rkl}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> * {shard-tglu}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@device_reset@unbind-reset-rebind: * {shard-rkl}: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@device_reset@unbind-reset-rebind.html> * {igt@drm_fdinfo@virtual-busy-idle}: * {shard-dg1}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-19/igt@drm_fdinfo@virtual-busy-idle.html> +2 similar issues * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: * {shard-rkl}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html> * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: * {shard-dg1}: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-19/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html> New tests New tests have been introduced between CI_DRM_11788_full and IGTPW_7354_full: New IGT tests (4) * igt@i915_pm_rc6_residency@rc6-idle@bcs0: * Statuses : 6 pass(s) 3 warn(s) * Exec time: [12.20, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@rcs0: * Statuses : 5 pass(s) 4 warn(s) * Exec time: [12.20, 12.26] s * igt@i915_pm_rc6_residency@rc6-idle@vcs0: * Statuses : 6 pass(s) 3 warn(s) * Exec time: [12.19, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@vecs0: * Statuses : 5 pass(s) 3 warn(s) * Exec time: [12.20, 12.26] s Known issues Here are the changes found in IGTPW_7354_full that come from known issues: IGT changes Issues hit * igt@gem_ctx_persistence@engines-hang: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@gem_ctx_persistence@engines-hang.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) * igt@gem_ctx_sseu@mmap-args: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_ctx_sseu@mmap-args.html> (i915#280<https://gitlab.freedesktop.org/drm/intel/issues/280>) * igt@gem_eio@in-flight-suspend: * shard-kbl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@gem_eio@in-flight-suspend.html> (i915#3614<https://gitlab.freedesktop.org/drm/intel/issues/3614>) * igt@gem_eio@unwedge-stress: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_eio@unwedge-stress.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gem_eio@unwedge-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) * igt@gem_exec_balancer@parallel-ordering: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@gem_exec_balancer@parallel-ordering.html> (i915#6117<https://gitlab.freedesktop.org/drm/intel/issues/6117>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_balancer@parallel-ordering.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) * igt@gem_exec_fair@basic-none-share@rcs0: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_exec_fair@basic-none-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_exec_fair@basic-none-solo@rcs0: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@gem_exec_fair@basic-none-solo@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_exec_fair@basic-pace@rcs0: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +2 similar issues * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-pace@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1 similar issue * igt@gem_exec_fair@basic-pace@vecs0: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_exec_fair@basic-pace@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_exec_fair@basic-pace@vecs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_lmem_swapping@parallel-random-verify: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl3/igt@gem_lmem_swapping@parallel-random-verify.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +2 similar issues * igt@gem_lmem_swapping@verify-ccs: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@gem_lmem_swapping@verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@gem_lmem_swapping@verify-ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_lmem_swapping@verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) * igt@gem_mmap_gtt@coherency: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_mmap_gtt@coherency.html> (fdo#111656<https://bugs.freedesktop.org/show_bug.cgi?id=111656>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_mmap_gtt@coherency.html> (fdo#109292<https://bugs.freedesktop.org/show_bug.cgi?id=109292>) * igt@gem_pwrite@basic-exhaustion: * shard-kbl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html> (i915#2658<https://gitlab.freedesktop.org/drm/intel/issues/2658>) * igt@gem_pxp@create-regular-buffer: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@gem_pxp@create-regular-buffer.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1 similar issue * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1 similar issue * igt@gem_render_copy@linear-to-vebox-yf-tiled: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@gem_render_copy@linear-to-vebox-yf-tiled.html> (i915#768<https://gitlab.freedesktop.org/drm/intel/issues/768>) +1 similar issue * igt@gem_userptr_blits@coherency-sync: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@coherency-sync.html> (fdo#109290<https://bugs.freedesktop.org/show_bug.cgi?id=109290>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@coherency-sync.html> (fdo#110542<https://bugs.freedesktop.org/show_bug.cgi?id=110542>) * igt@gem_userptr_blits@dmabuf-sync: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gem_userptr_blits@dmabuf-sync.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@gem_userptr_blits@dmabuf-sync.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * igt@gem_userptr_blits@invalid-mmap-offset-unsync: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) * igt@gen3_render_tiledx_blits: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gen3_render_tiledx_blits.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gen3_render_tiledx_blits.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) * igt@gen9_exec_parse@allowed-single: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@gen9_exec_parse@allowed-single.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gen9_exec_parse@allowed-single.html> (i915#5566<https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716<https://gitlab.freedesktop.org/drm/intel/issues/716>) * igt@gen9_exec_parse@secure-batches: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb1/igt@gen9_exec_parse@secure-batches.html> (i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1 similar issue * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gen9_exec_parse@secure-batches.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1 similar issue * igt@i915_pm_dc@dc6-dpms: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html> (i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_dc@dc6-dpms.html> (i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) * igt@kms_atomic_transition@plane-all-modeset-transition: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_atomic_transition@plane-all-modeset-transition.html> (i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_atomic_transition@plane-all-modeset-transition.html> (i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>) * igt@kms_big_fb@4-tiled-16bpp-rotate-180: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) +2 similar issues * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1 similar issue * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +151 similar issues * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (fdo#110723<https://bugs.freedesktop.org/show_bug.cgi?id=110723>) * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html> (i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 similar issue * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +7 similar issues * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +10 similar issues * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +2 similar issues * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +5 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +6 similar issues * igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1 similar issue * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +72 similar issues * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1 similar issue * igt@kms_color@pipe-d-gamma: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_color@pipe-d-gamma.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#1149<https://gitlab.freedesktop.org/drm/intel/issues/1149>) * igt@kms_color_chamelium@pipe-a-gamma: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb5/igt@kms_color_chamelium@pipe-a-gamma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +6 similar issues * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_color_chamelium@pipe-a-gamma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * igt@kms_color_chamelium@pipe-b-degamma: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_color_chamelium@pipe-b-degamma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +6 similar issues * igt@kms_color_chamelium@pipe-c-ctm-0-75: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_color_chamelium@pipe-c-ctm-0-75.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +10 similar issues * igt@kms_color_chamelium@pipe-c-gamma: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_color_chamelium@pipe-c-gamma.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +2 similar issues * igt@kms_color_chamelium@pipe-d-ctm-0-25: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_color_chamelium@pipe-d-ctm-0-25.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * igt@kms_content_protection@srm: * shard-kbl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_content_protection@srm.html> (i915#1319<https://gitlab.freedesktop.org/drm/intel/issues/1319>) * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +16 similar issues * igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279>) +1 similar issue * igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 similar issue * igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding.html> (fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279> / i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 similar issue * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html> (i915#3319<https://gitlab.freedesktop.org/drm/intel/issues/3319>) * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html> (i915#72<https://gitlab.freedesktop.org/drm/intel/issues/72>) * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) * igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html> (i915#5287<https://gitlab.freedesktop.org/drm/intel/issues/5287>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html> (i915#5287<https://gitlab.freedesktop.org/drm/intel/issues/5287>) * igt@kms_flip@2x-nonexisting-fb-interruptible: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +2 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +1 similar issue * igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html> (i915#2122<https://gitlab.freedesktop.org/drm/intel/issues/2122>) * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +5 similar issues * igt@kms_flip@flip-vs-suspend@c-dp1: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@kms_flip@flip-vs-suspend@c-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@kms_flip@flip-vs-suspend@c-dp1.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +1 similar issue * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +9 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +100 similar issues * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +11 similar issues * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) +1 similar issue * igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) +1 similar issue * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265<https://gitlab.freedesktop.org/drm/intel/issues/265>) * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265<https://gitlab.freedesktop.org/drm/intel/issues/265>) * igt@kms_psr2_su@frontbuffer-xrgb8888: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) +2 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109642<https://bugs.freedesktop.org/show_bug.cgi?id=109642> / fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) +2 similar issues * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#1911<https://gitlab.freedesktop.org/drm/intel/issues/1911>) * igt@kms_psr@psr2_no_drrs: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr@psr2_no_drrs.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@kms_psr@psr2_no_drrs.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) * igt@nouveau_crc@pipe-b-source-outp-inactive: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@nouveau_crc@pipe-b-source-outp-inactive.html> (i915#2530<https://gitlab.freedesktop.org/drm/intel/issues/2530>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@nouveau_crc@pipe-b-source-outp-inactive.html> (i915#2530<https://gitlab.freedesktop.org/drm/intel/issues/2530>) * igt@prime_nv_api@i915_self_import: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@prime_nv_api@i915_self_import.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@prime_nv_api@i915_self_import.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +1 similar issue * igt@prime_nv_pcopy@test3_5: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@prime_nv_pcopy@test3_5.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +193 similar issues * igt@sw_sync@sync_merge: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sw_sync@sync_merge.html> (i915#6140<https://gitlab.freedesktop.org/drm/intel/issues/6140>) * igt@sysfs_clients@create: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@sysfs_clients@create.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * igt@sysfs_clients@recycle-many: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sysfs_clients@recycle-many.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue * igt@sysfs_clients@split-50: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@sysfs_clients@split-50.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk8/igt@sysfs_clients@split-50.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@sysfs_clients@split-50.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) Possible fixes * igt@gem_ctx_exec@basic-nohangcheck: * {shard-tglu}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268<https://gitlab.freedesktop.org/drm/intel/issues/6268>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-1/igt@gem_ctx_exec@basic-nohangcheck.html> * igt@gem_ctx_persistence@legacy-engines-hang@blt: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html> (i915#6252<https://gitlab.freedesktop.org/drm/intel/issues/6252>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-4/igt@gem_ctx_persistence@legacy-engines-hang@blt.html> * igt@gem_ctx_persistence@legacy-engines-hostile@bsd1: * {shard-dg1}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-18/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html> (i915#4883<https://gitlab.freedesktop.org/drm/intel/issues/4883>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-16/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html> +1 similar issue * igt@gem_eio@kms: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_eio@kms.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_eio@kms.html> * igt@gem_exec_balancer@parallel-balancer: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb6/igt@gem_exec_balancer@parallel-balancer.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html> * igt@gem_exec_fair@basic-none@vcs1: * shard-kbl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-none@vcs1.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_exec_fair@basic-none@vcs1.html> +2 similar issues * igt@gem_exec_flush@basic-batch-kernel-default-cmd: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> (fdo#109313<https://bugs.freedesktop.org/show_bug.cgi?id=109313>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> * igt@gem_exec_reloc@basic-write-read-noreloc: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html> +4 similar issues * igt@gem_exec_whisper@basic-contexts-priority-all: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk6/igt@gem_exec_whisper@basic-contexts-priority-all.html> (i915#118<https://gitlab.freedesktop.org/drm/intel/issues/118>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_whisper@basic-contexts-priority-all.html> * igt@gem_partial_pwrite_pread@writes-after-reads: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html> +2 similar issues * igt@gen9_exec_parse@allowed-single: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk1/igt@gen9_exec_parse@allowed-single.html> (i915#5566<https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716<https://gitlab.freedesktop.org/drm/intel/issues/716>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@gen9_exec_parse@allowed-single.html> * igt@gen9_exec_parse@bb-chained: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html> +1 similar issue * igt@i915_pm_dc@dc6-psr: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@i915_pm_dc@dc6-psr.html> (i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@i915_pm_dc@dc6-psr.html> * igt@i915_pm_rpm@dpms-non-lpsp: * {shard-dg1}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-16/igt@i915_pm_rpm@dpms-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-18/igt@i915_pm_rpm@dpms-non-lpsp.html> * igt@i915_pm_rpm@system-suspend-execbuf: * shard-kbl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html> * igt@i915_selftest@live@hangcheck: * shard-snb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-snb4/igt@i915_selftest@live@hangcheck.html> (i915#3921<https://gitlab.freedesktop.org/drm/intel/issues/3921>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb2/igt@i915_selftest@live@hangcheck.html> * igt@i915_suspend@fence-restore-untiled: * shard-kbl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@i915_suspend@fence-restore-untiled.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@i915_suspend@fence-restore-untiled.html> +1 similar issue * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> +3 similar issues * igt@kms_color@pipe-a-ctm-red-to-blue: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_color@pipe-a-ctm-red-to-blue.html> (i915#1149<https://gitlab.freedesktop.org/drm/intel/issues/1149> / i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_color@pipe-a-ctm-red-to-blue.html> * igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html> (fdo#112022<https://bugs.freedesktop.org/show_bug.cgi?id=112022> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html> +1 similar issue * igt@kms_cursor_legacy@cursora-vs-flipa-varying-size: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html> +1 similar issue * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html> (fdo#111314<https://bugs.freedesktop.org/show_bug.cgi?id=111314> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098> / i915#4369<https://gitlab.freedesktop.org/drm/intel/issues/4369>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html> +2 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html> +1 similar issue * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: * shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html> * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html> +2 similar issues * igt@kms_psr@psr2_cursor_mmap_cpu: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_cpu.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html> * igt@kms_psr@suspend: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_psr@suspend.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_psr@suspend.html> * igt@kms_vblank@pipe-a-accuracy-idle: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@kms_vblank@pipe-a-accuracy-idle.html> (i915#43<https://gitlab.freedesktop.org/drm/intel/issues/43>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_vblank@pipe-a-accuracy-idle.html> * igt@kms_vblank@pipe-b-query-forked: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_vblank@pipe-b-query-forked.html> (i915#1845<https://gitlab.freedesktop.org/drm/intel/issues/1845> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_vblank@pipe-b-query-forked.html> +4 similar issues Warnings * igt@gem_exec_fair@basic-none-rrul@rcs0: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@gem_exec_fair@basic-none-rrul@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_fair@basic-none-rrul@rcs0.html> (i915#2852<https://gitlab.freedesktop.org/drm/intel/issues/2852>) * igt@gem_exec_fair@basic-none@vcs0: * shard-tglb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@gem_exec_fair@basic-none@vcs0.html> (i915#2848<https://gitlab.freedesktop.org/drm/intel/issues/2848>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_exec_fair@basic-none@vcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +4 similar issues * igt@gem_exec_fair@basic-pace-share@rcs0: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2848<https://gitlab.freedesktop.org/drm/intel/issues/2848>) * igt@i915_pm_dc@dc3co-vpb-simulation: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#588<https://gitlab.freedesktop.org/drm/intel/issues/588>) * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> (fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_psr2_su@page_flip-p010: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb4/igt@kms_psr2_su@page_flip-p010.html> (fdo#109642<https://bugs.freedesktop.org/show_bug.cgi?id=109642> / fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr2_su@page_flip-p010.html> (i915#5939<https://gitlab.freedesktop.org/drm/intel/issues/5939>) * igt@runner@aborted: * shard-apl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) * shard-kbl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@runner@aborted.html>) (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_6537 -> IGTPW_7354 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_11788: ec6f2ba27fe4ed0f5f6aca3977f62793b65bb1b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7354: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html IGT_6537: 331658a8475c8b0c0f7ffe5268a7318ef83da34e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit [-- Attachment #2: Type: text/html, Size: 122831 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) 2022-06-23 13:24 ` Tauro, Riana @ 2022-06-23 14:18 ` Vudum, Lakshminarayana 2022-06-27 5:43 ` Sarvela, Tomi P 0 siblings, 1 reply; 19+ messages in thread From: Vudum, Lakshminarayana @ 2022-06-23 14:18 UTC (permalink / raw) To: Tauro, Riana, igt-dev@lists.freedesktop.org, Sarvela, Tomi P, Latvala, Petri [-- Attachment #1: Type: text/plain, Size: 57322 bytes --] @Sarvela, Tomi P<mailto:tomi.p.sarvela@intel.com>/@Latvala, Petri<mailto:petri.latvala@intel.com> Any idea why re-reporting not working (or taking too long?). I have re-reported this series couple of times yesterday but it didn’t work. I have done that once again now. Lakshmi. From: Tauro, Riana <riana.tauro@intel.com> Sent: Thursday, June 23, 2022 6:24 AM To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>; igt-dev@lists.freedesktop.org Subject: RE: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) Hi @Vudum, Lakshminarayana<mailto:Lakshminarayana.Vudum@intel.com> It still shows old results. Hasn’t been updated yet. Thanks Riana Tauro From: Tauro, Riana Sent: Thursday, June 23, 2022 10:56 AM To: Vudum, Lakshminarayana <Lakshminarayana.Vudum@intel.com<mailto:Lakshminarayana.Vudum@intel.com>>; igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> Subject: RE: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) The warning should be a part of igt@i915_pm_rc6_residency@rc6-idle earlier. Sure. Thank you Thanks Riana Tauro From: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>> Sent: Thursday, June 23, 2022 10:53 AM To: Tauro, Riana <riana.tauro@intel.com<mailto:riana.tauro@intel.com>>; igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> Subject: RE: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) Filed a new issue for the sporadic failure https://gitlab.freedesktop.org/drm/intel/-/issues/6283 igt@device_reset@unbind-reset-rebind - incomplete - No warnings/errors igt@i915_pm_rc6_residency@rc6-idle@rcs0 is not yet in CI bug log. I have seen this failure in the past, team can fix the filter once it appears in post-merge and also in CI bug log. Re-reported earlier today but yet to reflect the change. Still shows old results. Thanks, Lakshmi. From: Tauro, Riana <riana.tauro@intel.com<mailto:riana.tauro@intel.com>> Sent: Tuesday, June 21, 2022 10:04 PM To: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>> Subject: RE: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) Hi @Vudum, Lakshminarayana<mailto:Lakshminarayana.Vudum@intel.com> This issue is not related to the changes * igt@device_reset@unbind-reset-rebind: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb8/igt@device_reset@unbind-reset-rebind.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@device_reset@unbind-reset-rebind.html> The below warnings were part of the test before as well. Not introduced with the new changes.Could you re-report the results. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11787/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle.html * {igt@i915_pm_rc6_residency@rc6-idle@rcs0} (NEW): * shard-tglb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * shard-iclb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * {shard-rkl}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> * {shard-tglu}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues Thanks Riana Tauro From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>> Sent: Wednesday, June 22, 2022 8:34 AM To: Tauro, Riana <riana.tauro@intel.com<mailto:riana.tauro@intel.com>> Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> Subject: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) Patch Details Series: Extend i915_pm_rc6_residency (rev2) URL: https://patchwork.freedesktop.org/series/105413/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html CI Bug Log - changes from CI_DRM_11788_full -> IGTPW_7354_full Summary FAILURE Serious unknown changes coming with IGTPW_7354_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_7354_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html Participating hosts (13 -> 10) Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues Here are the unknown changes that may have been introduced in IGTPW_7354_full: IGT changes Possible regressions * igt@device_reset@unbind-reset-rebind: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb8/igt@device_reset@unbind-reset-rebind.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@device_reset@unbind-reset-rebind.html> * {igt@i915_pm_rc6_residency@rc6-idle@rcs0} (NEW): * shard-tglb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * shard-iclb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * {shard-rkl}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> * {shard-tglu}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@device_reset@unbind-reset-rebind: * {shard-rkl}: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@device_reset@unbind-reset-rebind.html> * {igt@drm_fdinfo@virtual-busy-idle}: * {shard-dg1}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-19/igt@drm_fdinfo@virtual-busy-idle.html> +2 similar issues * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: * {shard-rkl}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html> * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: * {shard-dg1}: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-19/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html> New tests New tests have been introduced between CI_DRM_11788_full and IGTPW_7354_full: New IGT tests (4) * igt@i915_pm_rc6_residency@rc6-idle@bcs0: * Statuses : 6 pass(s) 3 warn(s) * Exec time: [12.20, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@rcs0: * Statuses : 5 pass(s) 4 warn(s) * Exec time: [12.20, 12.26] s * igt@i915_pm_rc6_residency@rc6-idle@vcs0: * Statuses : 6 pass(s) 3 warn(s) * Exec time: [12.19, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@vecs0: * Statuses : 5 pass(s) 3 warn(s) * Exec time: [12.20, 12.26] s Known issues Here are the changes found in IGTPW_7354_full that come from known issues: IGT changes Issues hit * igt@gem_ctx_persistence@engines-hang: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@gem_ctx_persistence@engines-hang.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) * igt@gem_ctx_sseu@mmap-args: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_ctx_sseu@mmap-args.html> (i915#280<https://gitlab.freedesktop.org/drm/intel/issues/280>) * igt@gem_eio@in-flight-suspend: * shard-kbl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@gem_eio@in-flight-suspend.html> (i915#3614<https://gitlab.freedesktop.org/drm/intel/issues/3614>) * igt@gem_eio@unwedge-stress: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_eio@unwedge-stress.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gem_eio@unwedge-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) * igt@gem_exec_balancer@parallel-ordering: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@gem_exec_balancer@parallel-ordering.html> (i915#6117<https://gitlab.freedesktop.org/drm/intel/issues/6117>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_balancer@parallel-ordering.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) * igt@gem_exec_fair@basic-none-share@rcs0: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_exec_fair@basic-none-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_exec_fair@basic-none-solo@rcs0: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@gem_exec_fair@basic-none-solo@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_exec_fair@basic-pace@rcs0: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +2 similar issues * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-pace@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1 similar issue * igt@gem_exec_fair@basic-pace@vecs0: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_exec_fair@basic-pace@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_exec_fair@basic-pace@vecs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_lmem_swapping@parallel-random-verify: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl3/igt@gem_lmem_swapping@parallel-random-verify.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +2 similar issues * igt@gem_lmem_swapping@verify-ccs: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@gem_lmem_swapping@verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@gem_lmem_swapping@verify-ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_lmem_swapping@verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) * igt@gem_mmap_gtt@coherency: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_mmap_gtt@coherency.html> (fdo#111656<https://bugs.freedesktop.org/show_bug.cgi?id=111656>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_mmap_gtt@coherency.html> (fdo#109292<https://bugs.freedesktop.org/show_bug.cgi?id=109292>) * igt@gem_pwrite@basic-exhaustion: * shard-kbl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html> (i915#2658<https://gitlab.freedesktop.org/drm/intel/issues/2658>) * igt@gem_pxp@create-regular-buffer: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@gem_pxp@create-regular-buffer.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1 similar issue * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1 similar issue * igt@gem_render_copy@linear-to-vebox-yf-tiled: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@gem_render_copy@linear-to-vebox-yf-tiled.html> (i915#768<https://gitlab.freedesktop.org/drm/intel/issues/768>) +1 similar issue * igt@gem_userptr_blits@coherency-sync: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@coherency-sync.html> (fdo#109290<https://bugs.freedesktop.org/show_bug.cgi?id=109290>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@coherency-sync.html> (fdo#110542<https://bugs.freedesktop.org/show_bug.cgi?id=110542>) * igt@gem_userptr_blits@dmabuf-sync: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gem_userptr_blits@dmabuf-sync.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@gem_userptr_blits@dmabuf-sync.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * igt@gem_userptr_blits@invalid-mmap-offset-unsync: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) * igt@gen3_render_tiledx_blits: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gen3_render_tiledx_blits.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gen3_render_tiledx_blits.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) * igt@gen9_exec_parse@allowed-single: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@gen9_exec_parse@allowed-single.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gen9_exec_parse@allowed-single.html> (i915#5566<https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716<https://gitlab.freedesktop.org/drm/intel/issues/716>) * igt@gen9_exec_parse@secure-batches: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb1/igt@gen9_exec_parse@secure-batches.html> (i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1 similar issue * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gen9_exec_parse@secure-batches.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1 similar issue * igt@i915_pm_dc@dc6-dpms: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html> (i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_dc@dc6-dpms.html> (i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) * igt@kms_atomic_transition@plane-all-modeset-transition: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_atomic_transition@plane-all-modeset-transition.html> (i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_atomic_transition@plane-all-modeset-transition.html> (i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>) * igt@kms_big_fb@4-tiled-16bpp-rotate-180: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) +2 similar issues * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1 similar issue * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +151 similar issues * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (fdo#110723<https://bugs.freedesktop.org/show_bug.cgi?id=110723>) * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html> (i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 similar issue * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +7 similar issues * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +10 similar issues * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +2 similar issues * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +5 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +6 similar issues * igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1 similar issue * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +72 similar issues * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1 similar issue * igt@kms_color@pipe-d-gamma: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_color@pipe-d-gamma.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#1149<https://gitlab.freedesktop.org/drm/intel/issues/1149>) * igt@kms_color_chamelium@pipe-a-gamma: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb5/igt@kms_color_chamelium@pipe-a-gamma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +6 similar issues * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_color_chamelium@pipe-a-gamma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * igt@kms_color_chamelium@pipe-b-degamma: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_color_chamelium@pipe-b-degamma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +6 similar issues * igt@kms_color_chamelium@pipe-c-ctm-0-75: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_color_chamelium@pipe-c-ctm-0-75.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +10 similar issues * igt@kms_color_chamelium@pipe-c-gamma: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_color_chamelium@pipe-c-gamma.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +2 similar issues * igt@kms_color_chamelium@pipe-d-ctm-0-25: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_color_chamelium@pipe-d-ctm-0-25.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * igt@kms_content_protection@srm: * shard-kbl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_content_protection@srm.html> (i915#1319<https://gitlab.freedesktop.org/drm/intel/issues/1319>) * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +16 similar issues * igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279>) +1 similar issue * igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 similar issue * igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding.html> (fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279> / i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 similar issue * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html> (i915#3319<https://gitlab.freedesktop.org/drm/intel/issues/3319>) * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html> (i915#72<https://gitlab.freedesktop.org/drm/intel/issues/72>) * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) * igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html> (i915#5287<https://gitlab.freedesktop.org/drm/intel/issues/5287>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html> (i915#5287<https://gitlab.freedesktop.org/drm/intel/issues/5287>) * igt@kms_flip@2x-nonexisting-fb-interruptible: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +2 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +1 similar issue * igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html> (i915#2122<https://gitlab.freedesktop.org/drm/intel/issues/2122>) * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +5 similar issues * igt@kms_flip@flip-vs-suspend@c-dp1: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@kms_flip@flip-vs-suspend@c-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@kms_flip@flip-vs-suspend@c-dp1.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +1 similar issue * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +9 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +100 similar issues * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +11 similar issues * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) +1 similar issue * igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) +1 similar issue * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265<https://gitlab.freedesktop.org/drm/intel/issues/265>) * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265<https://gitlab.freedesktop.org/drm/intel/issues/265>) * igt@kms_psr2_su@frontbuffer-xrgb8888: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) +2 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109642<https://bugs.freedesktop.org/show_bug.cgi?id=109642> / fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) +2 similar issues * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#1911<https://gitlab.freedesktop.org/drm/intel/issues/1911>) * igt@kms_psr@psr2_no_drrs: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr@psr2_no_drrs.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@kms_psr@psr2_no_drrs.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) * igt@nouveau_crc@pipe-b-source-outp-inactive: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@nouveau_crc@pipe-b-source-outp-inactive.html> (i915#2530<https://gitlab.freedesktop.org/drm/intel/issues/2530>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@nouveau_crc@pipe-b-source-outp-inactive.html> (i915#2530<https://gitlab.freedesktop.org/drm/intel/issues/2530>) * igt@prime_nv_api@i915_self_import: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@prime_nv_api@i915_self_import.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@prime_nv_api@i915_self_import.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +1 similar issue * igt@prime_nv_pcopy@test3_5: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@prime_nv_pcopy@test3_5.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +193 similar issues * igt@sw_sync@sync_merge: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sw_sync@sync_merge.html> (i915#6140<https://gitlab.freedesktop.org/drm/intel/issues/6140>) * igt@sysfs_clients@create: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@sysfs_clients@create.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * igt@sysfs_clients@recycle-many: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sysfs_clients@recycle-many.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue * igt@sysfs_clients@split-50: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@sysfs_clients@split-50.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk8/igt@sysfs_clients@split-50.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@sysfs_clients@split-50.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) Possible fixes * igt@gem_ctx_exec@basic-nohangcheck: * {shard-tglu}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268<https://gitlab.freedesktop.org/drm/intel/issues/6268>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-1/igt@gem_ctx_exec@basic-nohangcheck.html> * igt@gem_ctx_persistence@legacy-engines-hang@blt: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html> (i915#6252<https://gitlab.freedesktop.org/drm/intel/issues/6252>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-4/igt@gem_ctx_persistence@legacy-engines-hang@blt.html> * igt@gem_ctx_persistence@legacy-engines-hostile@bsd1: * {shard-dg1}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-18/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html> (i915#4883<https://gitlab.freedesktop.org/drm/intel/issues/4883>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-16/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html> +1 similar issue * igt@gem_eio@kms: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_eio@kms.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_eio@kms.html> * igt@gem_exec_balancer@parallel-balancer: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb6/igt@gem_exec_balancer@parallel-balancer.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html> * igt@gem_exec_fair@basic-none@vcs1: * shard-kbl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-none@vcs1.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_exec_fair@basic-none@vcs1.html> +2 similar issues * igt@gem_exec_flush@basic-batch-kernel-default-cmd: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> (fdo#109313<https://bugs.freedesktop.org/show_bug.cgi?id=109313>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> * igt@gem_exec_reloc@basic-write-read-noreloc: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html> +4 similar issues * igt@gem_exec_whisper@basic-contexts-priority-all: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk6/igt@gem_exec_whisper@basic-contexts-priority-all.html> (i915#118<https://gitlab.freedesktop.org/drm/intel/issues/118>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_whisper@basic-contexts-priority-all.html> * igt@gem_partial_pwrite_pread@writes-after-reads: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html> +2 similar issues * igt@gen9_exec_parse@allowed-single: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk1/igt@gen9_exec_parse@allowed-single.html> (i915#5566<https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716<https://gitlab.freedesktop.org/drm/intel/issues/716>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@gen9_exec_parse@allowed-single.html> * igt@gen9_exec_parse@bb-chained: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html> +1 similar issue * igt@i915_pm_dc@dc6-psr: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@i915_pm_dc@dc6-psr.html> (i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@i915_pm_dc@dc6-psr.html> * igt@i915_pm_rpm@dpms-non-lpsp: * {shard-dg1}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-16/igt@i915_pm_rpm@dpms-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-18/igt@i915_pm_rpm@dpms-non-lpsp.html> * igt@i915_pm_rpm@system-suspend-execbuf: * shard-kbl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html> * igt@i915_selftest@live@hangcheck: * shard-snb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-snb4/igt@i915_selftest@live@hangcheck.html> (i915#3921<https://gitlab.freedesktop.org/drm/intel/issues/3921>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb2/igt@i915_selftest@live@hangcheck.html> * igt@i915_suspend@fence-restore-untiled: * shard-kbl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@i915_suspend@fence-restore-untiled.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@i915_suspend@fence-restore-untiled.html> +1 similar issue * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> +3 similar issues * igt@kms_color@pipe-a-ctm-red-to-blue: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_color@pipe-a-ctm-red-to-blue.html> (i915#1149<https://gitlab.freedesktop.org/drm/intel/issues/1149> / i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_color@pipe-a-ctm-red-to-blue.html> * igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html> (fdo#112022<https://bugs.freedesktop.org/show_bug.cgi?id=112022> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html> +1 similar issue * igt@kms_cursor_legacy@cursora-vs-flipa-varying-size: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html> +1 similar issue * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html> (fdo#111314<https://bugs.freedesktop.org/show_bug.cgi?id=111314> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098> / i915#4369<https://gitlab.freedesktop.org/drm/intel/issues/4369>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html> +2 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html> +1 similar issue * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: * shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html> * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html> +2 similar issues * igt@kms_psr@psr2_cursor_mmap_cpu: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_cpu.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html> * igt@kms_psr@suspend: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_psr@suspend.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_psr@suspend.html> * igt@kms_vblank@pipe-a-accuracy-idle: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@kms_vblank@pipe-a-accuracy-idle.html> (i915#43<https://gitlab.freedesktop.org/drm/intel/issues/43>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_vblank@pipe-a-accuracy-idle.html> * igt@kms_vblank@pipe-b-query-forked: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_vblank@pipe-b-query-forked.html> (i915#1845<https://gitlab.freedesktop.org/drm/intel/issues/1845> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_vblank@pipe-b-query-forked.html> +4 similar issues Warnings * igt@gem_exec_fair@basic-none-rrul@rcs0: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@gem_exec_fair@basic-none-rrul@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_fair@basic-none-rrul@rcs0.html> (i915#2852<https://gitlab.freedesktop.org/drm/intel/issues/2852>) * igt@gem_exec_fair@basic-none@vcs0: * shard-tglb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@gem_exec_fair@basic-none@vcs0.html> (i915#2848<https://gitlab.freedesktop.org/drm/intel/issues/2848>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_exec_fair@basic-none@vcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +4 similar issues * igt@gem_exec_fair@basic-pace-share@rcs0: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2848<https://gitlab.freedesktop.org/drm/intel/issues/2848>) * igt@i915_pm_dc@dc3co-vpb-simulation: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#588<https://gitlab.freedesktop.org/drm/intel/issues/588>) * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> (fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_psr2_su@page_flip-p010: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb4/igt@kms_psr2_su@page_flip-p010.html> (fdo#109642<https://bugs.freedesktop.org/show_bug.cgi?id=109642> / fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr2_su@page_flip-p010.html> (i915#5939<https://gitlab.freedesktop.org/drm/intel/issues/5939>) * igt@runner@aborted: * shard-apl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) * shard-kbl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@runner@aborted.html>) (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_6537 -> IGTPW_7354 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_11788: ec6f2ba27fe4ed0f5f6aca3977f62793b65bb1b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7354: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html IGT_6537: 331658a8475c8b0c0f7ffe5268a7318ef83da34e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit [-- Attachment #2: Type: text/html, Size: 124287 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) 2022-06-23 14:18 ` Vudum, Lakshminarayana @ 2022-06-27 5:43 ` Sarvela, Tomi P 0 siblings, 0 replies; 19+ messages in thread From: Sarvela, Tomi P @ 2022-06-27 5:43 UTC (permalink / raw) To: Vudum, Lakshminarayana, Tauro, Riana, igt-dev@lists.freedesktop.org, Latvala, Petri [-- Attachment #1: Type: text/plain, Size: 58491 bytes --] There was an issue with shard reporting queue, my first guess is local network issue. I’ve restarted the reporter and followed that it runs as expected. There’s huge amount of work in queue, so this will take some hours to unpack. Tomi From: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Sent: Thursday, June 23, 2022 5:18 PM To: Tauro, Riana <riana.tauro@intel.com>; igt-dev@lists.freedesktop.org; Sarvela, Tomi P <tomi.p.sarvela@intel.com>; Latvala, Petri <petri.latvala@intel.com> Subject: RE: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) @Sarvela, Tomi P<mailto:tomi.p.sarvela@intel.com>/@Latvala, Petri<mailto:petri.latvala@intel.com> Any idea why re-reporting not working (or taking too long?). I have re-reported this series couple of times yesterday but it didn’t work. I have done that once again now. Lakshmi. From: Tauro, Riana <riana.tauro@intel.com<mailto:riana.tauro@intel.com>> Sent: Thursday, June 23, 2022 6:24 AM To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>>; igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> Subject: RE: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) Hi @Vudum, Lakshminarayana<mailto:Lakshminarayana.Vudum@intel.com> It still shows old results. Hasn’t been updated yet. Thanks Riana Tauro From: Tauro, Riana Sent: Thursday, June 23, 2022 10:56 AM To: Vudum, Lakshminarayana <Lakshminarayana.Vudum@intel.com<mailto:Lakshminarayana.Vudum@intel.com>>; igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> Subject: RE: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) The warning should be a part of igt@i915_pm_rc6_residency@rc6-idle earlier. Sure. Thank you Thanks Riana Tauro From: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>> Sent: Thursday, June 23, 2022 10:53 AM To: Tauro, Riana <riana.tauro@intel.com<mailto:riana.tauro@intel.com>>; igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> Subject: RE: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) Filed a new issue for the sporadic failure https://gitlab.freedesktop.org/drm/intel/-/issues/6283 igt@device_reset@unbind-reset-rebind - incomplete - No warnings/errors igt@i915_pm_rc6_residency@rc6-idle@rcs0 is not yet in CI bug log. I have seen this failure in the past, team can fix the filter once it appears in post-merge and also in CI bug log. Re-reported earlier today but yet to reflect the change. Still shows old results. Thanks, Lakshmi. From: Tauro, Riana <riana.tauro@intel.com<mailto:riana.tauro@intel.com>> Sent: Tuesday, June 21, 2022 10:04 PM To: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>> Subject: RE: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) Hi @Vudum, Lakshminarayana<mailto:Lakshminarayana.Vudum@intel.com> This issue is not related to the changes * igt@device_reset@unbind-reset-rebind: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb8/igt@device_reset@unbind-reset-rebind.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@device_reset@unbind-reset-rebind.html> The below warnings were part of the test before as well. Not introduced with the new changes.Could you re-report the results. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11787/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle.html * {igt@i915_pm_rc6_residency@rc6-idle@rcs0} (NEW): * shard-tglb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * shard-iclb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * {shard-rkl}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> * {shard-tglu}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues Thanks Riana Tauro From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>> Sent: Wednesday, June 22, 2022 8:34 AM To: Tauro, Riana <riana.tauro@intel.com<mailto:riana.tauro@intel.com>> Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> Subject: ✗ Fi.CI.IGT: failure for Extend i915_pm_rc6_residency (rev2) Patch Details Series: Extend i915_pm_rc6_residency (rev2) URL: https://patchwork.freedesktop.org/series/105413/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html CI Bug Log - changes from CI_DRM_11788_full -> IGTPW_7354_full Summary FAILURE Serious unknown changes coming with IGTPW_7354_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_7354_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html Participating hosts (13 -> 10) Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues Here are the unknown changes that may have been introduced in IGTPW_7354_full: IGT changes Possible regressions * igt@device_reset@unbind-reset-rebind: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb8/igt@device_reset@unbind-reset-rebind.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@device_reset@unbind-reset-rebind.html> * {igt@i915_pm_rc6_residency@rc6-idle@rcs0} (NEW): * shard-tglb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * shard-iclb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues * {shard-rkl}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> * {shard-tglu}: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +3 similar issues Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@device_reset@unbind-reset-rebind: * {shard-rkl}: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@device_reset@unbind-reset-rebind.html> * {igt@drm_fdinfo@virtual-busy-idle}: * {shard-dg1}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-19/igt@drm_fdinfo@virtual-busy-idle.html> +2 similar issues * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: * {shard-rkl}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html> * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: * {shard-dg1}: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-19/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html> New tests New tests have been introduced between CI_DRM_11788_full and IGTPW_7354_full: New IGT tests (4) * igt@i915_pm_rc6_residency@rc6-idle@bcs0: * Statuses : 6 pass(s) 3 warn(s) * Exec time: [12.20, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@rcs0: * Statuses : 5 pass(s) 4 warn(s) * Exec time: [12.20, 12.26] s * igt@i915_pm_rc6_residency@rc6-idle@vcs0: * Statuses : 6 pass(s) 3 warn(s) * Exec time: [12.19, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@vecs0: * Statuses : 5 pass(s) 3 warn(s) * Exec time: [12.20, 12.26] s Known issues Here are the changes found in IGTPW_7354_full that come from known issues: IGT changes Issues hit * igt@gem_ctx_persistence@engines-hang: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@gem_ctx_persistence@engines-hang.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) * igt@gem_ctx_sseu@mmap-args: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_ctx_sseu@mmap-args.html> (i915#280<https://gitlab.freedesktop.org/drm/intel/issues/280>) * igt@gem_eio@in-flight-suspend: * shard-kbl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@gem_eio@in-flight-suspend.html> (i915#3614<https://gitlab.freedesktop.org/drm/intel/issues/3614>) * igt@gem_eio@unwedge-stress: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_eio@unwedge-stress.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gem_eio@unwedge-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) * igt@gem_exec_balancer@parallel-ordering: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@gem_exec_balancer@parallel-ordering.html> (i915#6117<https://gitlab.freedesktop.org/drm/intel/issues/6117>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_balancer@parallel-ordering.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) * igt@gem_exec_fair@basic-none-share@rcs0: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_exec_fair@basic-none-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_exec_fair@basic-none-solo@rcs0: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@gem_exec_fair@basic-none-solo@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_exec_fair@basic-pace@rcs0: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +2 similar issues * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-pace@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1 similar issue * igt@gem_exec_fair@basic-pace@vecs0: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_exec_fair@basic-pace@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_exec_fair@basic-pace@vecs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_lmem_swapping@parallel-random-verify: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl3/igt@gem_lmem_swapping@parallel-random-verify.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +2 similar issues * igt@gem_lmem_swapping@verify-ccs: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@gem_lmem_swapping@verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@gem_lmem_swapping@verify-ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_lmem_swapping@verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) * igt@gem_mmap_gtt@coherency: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_mmap_gtt@coherency.html> (fdo#111656<https://bugs.freedesktop.org/show_bug.cgi?id=111656>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_mmap_gtt@coherency.html> (fdo#109292<https://bugs.freedesktop.org/show_bug.cgi?id=109292>) * igt@gem_pwrite@basic-exhaustion: * shard-kbl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html> (i915#2658<https://gitlab.freedesktop.org/drm/intel/issues/2658>) * igt@gem_pxp@create-regular-buffer: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@gem_pxp@create-regular-buffer.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1 similar issue * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1 similar issue * igt@gem_render_copy@linear-to-vebox-yf-tiled: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@gem_render_copy@linear-to-vebox-yf-tiled.html> (i915#768<https://gitlab.freedesktop.org/drm/intel/issues/768>) +1 similar issue * igt@gem_userptr_blits@coherency-sync: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@coherency-sync.html> (fdo#109290<https://bugs.freedesktop.org/show_bug.cgi?id=109290>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@coherency-sync.html> (fdo#110542<https://bugs.freedesktop.org/show_bug.cgi?id=110542>) * igt@gem_userptr_blits@dmabuf-sync: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gem_userptr_blits@dmabuf-sync.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@gem_userptr_blits@dmabuf-sync.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>) * igt@gem_userptr_blits@invalid-mmap-offset-unsync: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) * igt@gen3_render_tiledx_blits: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gen3_render_tiledx_blits.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gen3_render_tiledx_blits.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) * igt@gen9_exec_parse@allowed-single: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@gen9_exec_parse@allowed-single.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gen9_exec_parse@allowed-single.html> (i915#5566<https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716<https://gitlab.freedesktop.org/drm/intel/issues/716>) * igt@gen9_exec_parse@secure-batches: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb1/igt@gen9_exec_parse@secure-batches.html> (i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1 similar issue * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gen9_exec_parse@secure-batches.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1 similar issue * igt@i915_pm_dc@dc6-dpms: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html> (i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_dc@dc6-dpms.html> (i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) * igt@kms_atomic_transition@plane-all-modeset-transition: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_atomic_transition@plane-all-modeset-transition.html> (i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_atomic_transition@plane-all-modeset-transition.html> (i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>) * igt@kms_big_fb@4-tiled-16bpp-rotate-180: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) +2 similar issues * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1 similar issue * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +151 similar issues * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (fdo#110723<https://bugs.freedesktop.org/show_bug.cgi?id=110723>) * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html> (i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 similar issue * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +7 similar issues * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +10 similar issues * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +2 similar issues * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +5 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +6 similar issues * igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1 similar issue * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +72 similar issues * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1 similar issue * igt@kms_color@pipe-d-gamma: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_color@pipe-d-gamma.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#1149<https://gitlab.freedesktop.org/drm/intel/issues/1149>) * igt@kms_color_chamelium@pipe-a-gamma: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb5/igt@kms_color_chamelium@pipe-a-gamma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +6 similar issues * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_color_chamelium@pipe-a-gamma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * igt@kms_color_chamelium@pipe-b-degamma: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_color_chamelium@pipe-b-degamma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +6 similar issues * igt@kms_color_chamelium@pipe-c-ctm-0-75: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_color_chamelium@pipe-c-ctm-0-75.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +10 similar issues * igt@kms_color_chamelium@pipe-c-gamma: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_color_chamelium@pipe-c-gamma.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +2 similar issues * igt@kms_color_chamelium@pipe-d-ctm-0-25: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_color_chamelium@pipe-d-ctm-0-25.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * igt@kms_content_protection@srm: * shard-kbl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_content_protection@srm.html> (i915#1319<https://gitlab.freedesktop.org/drm/intel/issues/1319>) * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +16 similar issues * igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279>) +1 similar issue * igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 similar issue * igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding.html> (fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279> / i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 similar issue * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html> (i915#3319<https://gitlab.freedesktop.org/drm/intel/issues/3319>) * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html> (i915#72<https://gitlab.freedesktop.org/drm/intel/issues/72>) * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) * igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html> (i915#5287<https://gitlab.freedesktop.org/drm/intel/issues/5287>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html> (i915#5287<https://gitlab.freedesktop.org/drm/intel/issues/5287>) * igt@kms_flip@2x-nonexisting-fb-interruptible: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +2 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +1 similar issue * igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html> (i915#2122<https://gitlab.freedesktop.org/drm/intel/issues/2122>) * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +5 similar issues * igt@kms_flip@flip-vs-suspend@c-dp1: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@kms_flip@flip-vs-suspend@c-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@kms_flip@flip-vs-suspend@c-dp1.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +1 similar issue * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +9 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +100 similar issues * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +11 similar issues * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) +1 similar issue * igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) +1 similar issue * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265<https://gitlab.freedesktop.org/drm/intel/issues/265>) * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265<https://gitlab.freedesktop.org/drm/intel/issues/265>) * igt@kms_psr2_su@frontbuffer-xrgb8888: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) +2 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109642<https://bugs.freedesktop.org/show_bug.cgi?id=109642> / fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) +2 similar issues * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#1911<https://gitlab.freedesktop.org/drm/intel/issues/1911>) * igt@kms_psr@psr2_no_drrs: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr@psr2_no_drrs.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@kms_psr@psr2_no_drrs.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) * igt@nouveau_crc@pipe-b-source-outp-inactive: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@nouveau_crc@pipe-b-source-outp-inactive.html> (i915#2530<https://gitlab.freedesktop.org/drm/intel/issues/2530>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@nouveau_crc@pipe-b-source-outp-inactive.html> (i915#2530<https://gitlab.freedesktop.org/drm/intel/issues/2530>) * igt@prime_nv_api@i915_self_import: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@prime_nv_api@i915_self_import.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@prime_nv_api@i915_self_import.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +1 similar issue * igt@prime_nv_pcopy@test3_5: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@prime_nv_pcopy@test3_5.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +193 similar issues * igt@sw_sync@sync_merge: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sw_sync@sync_merge.html> (i915#6140<https://gitlab.freedesktop.org/drm/intel/issues/6140>) * igt@sysfs_clients@create: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@sysfs_clients@create.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * igt@sysfs_clients@recycle-many: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sysfs_clients@recycle-many.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue * igt@sysfs_clients@split-50: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@sysfs_clients@split-50.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk8/igt@sysfs_clients@split-50.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@sysfs_clients@split-50.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) Possible fixes * igt@gem_ctx_exec@basic-nohangcheck: * {shard-tglu}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268<https://gitlab.freedesktop.org/drm/intel/issues/6268>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-1/igt@gem_ctx_exec@basic-nohangcheck.html> * igt@gem_ctx_persistence@legacy-engines-hang@blt: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html> (i915#6252<https://gitlab.freedesktop.org/drm/intel/issues/6252>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-4/igt@gem_ctx_persistence@legacy-engines-hang@blt.html> * igt@gem_ctx_persistence@legacy-engines-hostile@bsd1: * {shard-dg1}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-18/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html> (i915#4883<https://gitlab.freedesktop.org/drm/intel/issues/4883>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-16/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html> +1 similar issue * igt@gem_eio@kms: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_eio@kms.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_eio@kms.html> * igt@gem_exec_balancer@parallel-balancer: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb6/igt@gem_exec_balancer@parallel-balancer.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html> * igt@gem_exec_fair@basic-none@vcs1: * shard-kbl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-none@vcs1.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_exec_fair@basic-none@vcs1.html> +2 similar issues * igt@gem_exec_flush@basic-batch-kernel-default-cmd: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> (fdo#109313<https://bugs.freedesktop.org/show_bug.cgi?id=109313>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> * igt@gem_exec_reloc@basic-write-read-noreloc: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html> +4 similar issues * igt@gem_exec_whisper@basic-contexts-priority-all: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk6/igt@gem_exec_whisper@basic-contexts-priority-all.html> (i915#118<https://gitlab.freedesktop.org/drm/intel/issues/118>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_whisper@basic-contexts-priority-all.html> * igt@gem_partial_pwrite_pread@writes-after-reads: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html> +2 similar issues * igt@gen9_exec_parse@allowed-single: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk1/igt@gen9_exec_parse@allowed-single.html> (i915#5566<https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716<https://gitlab.freedesktop.org/drm/intel/issues/716>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@gen9_exec_parse@allowed-single.html> * igt@gen9_exec_parse@bb-chained: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html> +1 similar issue * igt@i915_pm_dc@dc6-psr: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@i915_pm_dc@dc6-psr.html> (i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@i915_pm_dc@dc6-psr.html> * igt@i915_pm_rpm@dpms-non-lpsp: * {shard-dg1}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-16/igt@i915_pm_rpm@dpms-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-18/igt@i915_pm_rpm@dpms-non-lpsp.html> * igt@i915_pm_rpm@system-suspend-execbuf: * shard-kbl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html> * igt@i915_selftest@live@hangcheck: * shard-snb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-snb4/igt@i915_selftest@live@hangcheck.html> (i915#3921<https://gitlab.freedesktop.org/drm/intel/issues/3921>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb2/igt@i915_selftest@live@hangcheck.html> * igt@i915_suspend@fence-restore-untiled: * shard-kbl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@i915_suspend@fence-restore-untiled.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@i915_suspend@fence-restore-untiled.html> +1 similar issue * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> +3 similar issues * igt@kms_color@pipe-a-ctm-red-to-blue: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_color@pipe-a-ctm-red-to-blue.html> (i915#1149<https://gitlab.freedesktop.org/drm/intel/issues/1149> / i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_color@pipe-a-ctm-red-to-blue.html> * igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html> (fdo#112022<https://bugs.freedesktop.org/show_bug.cgi?id=112022> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html> +1 similar issue * igt@kms_cursor_legacy@cursora-vs-flipa-varying-size: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html> +1 similar issue * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html> (fdo#111314<https://bugs.freedesktop.org/show_bug.cgi?id=111314> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098> / i915#4369<https://gitlab.freedesktop.org/drm/intel/issues/4369>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html> +2 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html> +1 similar issue * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: * shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html> * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html> +2 similar issues * igt@kms_psr@psr2_cursor_mmap_cpu: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_cpu.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html> * igt@kms_psr@suspend: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_psr@suspend.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_psr@suspend.html> * igt@kms_vblank@pipe-a-accuracy-idle: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@kms_vblank@pipe-a-accuracy-idle.html> (i915#43<https://gitlab.freedesktop.org/drm/intel/issues/43>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_vblank@pipe-a-accuracy-idle.html> * igt@kms_vblank@pipe-b-query-forked: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_vblank@pipe-b-query-forked.html> (i915#1845<https://gitlab.freedesktop.org/drm/intel/issues/1845> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_vblank@pipe-b-query-forked.html> +4 similar issues Warnings * igt@gem_exec_fair@basic-none-rrul@rcs0: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@gem_exec_fair@basic-none-rrul@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_fair@basic-none-rrul@rcs0.html> (i915#2852<https://gitlab.freedesktop.org/drm/intel/issues/2852>) * igt@gem_exec_fair@basic-none@vcs0: * shard-tglb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@gem_exec_fair@basic-none@vcs0.html> (i915#2848<https://gitlab.freedesktop.org/drm/intel/issues/2848>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_exec_fair@basic-none@vcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +4 similar issues * igt@gem_exec_fair@basic-pace-share@rcs0: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2848<https://gitlab.freedesktop.org/drm/intel/issues/2848>) * igt@i915_pm_dc@dc3co-vpb-simulation: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#588<https://gitlab.freedesktop.org/drm/intel/issues/588>) * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> (fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_psr2_su@page_flip-p010: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb4/igt@kms_psr2_su@page_flip-p010.html> (fdo#109642<https://bugs.freedesktop.org/show_bug.cgi?id=109642> / fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr2_su@page_flip-p010.html> (i915#5939<https://gitlab.freedesktop.org/drm/intel/issues/5939>) * igt@runner@aborted: * shard-apl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) * shard-kbl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@runner@aborted.html>) (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312> / i915#5257<https://gitlab.freedesktop.org/drm/intel/issues/5257>) {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_6537 -> IGTPW_7354 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_11788: ec6f2ba27fe4ed0f5f6aca3977f62793b65bb1b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7354: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html IGT_6537: 331658a8475c8b0c0f7ffe5268a7318ef83da34e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit [-- Attachment #2: Type: text/html, Size: 165838 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Extend i915_pm_rc6_residency (rev2) 2022-06-21 13:45 [igt-dev] [PATCH i-g-t v2 0/2] Extend i915_pm_rc6_residency Riana Tauro ` (4 preceding siblings ...) 2022-06-22 3:03 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-06-27 7:13 ` Patchwork 2022-06-27 8:18 ` Patchwork 2022-06-27 14:16 ` Patchwork 7 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2022-06-27 7:13 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 57303 bytes --] == Series Details == Series: Extend i915_pm_rc6_residency (rev2) URL : https://patchwork.freedesktop.org/series/105413/ State : success == Summary == CI Bug Log - changes from CI_DRM_11788_full -> IGTPW_7354_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html Participating hosts (13 -> 10) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_7354_full: ### IGT changes ### #### Possible regressions #### * {igt@i915_pm_rc6_residency@rc6-idle@rcs0} (NEW): - shard-tglb: NOTRUN -> [WARN][1] +3 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html - shard-iclb: NOTRUN -> [WARN][2] +3 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html - {shard-rkl}: NOTRUN -> [WARN][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html - {shard-tglu}: NOTRUN -> [WARN][4] +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: - {shard-rkl}: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: - {shard-dg1}: NOTRUN -> [FAIL][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-19/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html New tests --------- New tests have been introduced between CI_DRM_11788_full and IGTPW_7354_full: ### New IGT tests (4) ### * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - Statuses : 6 pass(s) 3 warn(s) - Exec time: [12.20, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - Statuses : 5 pass(s) 4 warn(s) - Exec time: [12.20, 12.26] s * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - Statuses : 6 pass(s) 3 warn(s) - Exec time: [12.19, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - Statuses : 5 pass(s) 3 warn(s) - Exec time: [12.20, 12.26] s Known issues ------------ Here are the changes found in IGTPW_7354_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@unbind-reset-rebind: - shard-tglb: [PASS][7] -> [INCOMPLETE][8] ([i915#6283]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb8/igt@device_reset@unbind-reset-rebind.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@device_reset@unbind-reset-rebind.html * igt@gem_ctx_persistence@engines-hang: - shard-snb: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@gem_ctx_persistence@engines-hang.html * igt@gem_ctx_sseu@mmap-args: - shard-tglb: NOTRUN -> [SKIP][10] ([i915#280]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-suspend: - shard-kbl: NOTRUN -> [INCOMPLETE][11] ([i915#3614]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@unwedge-stress: - shard-tglb: [PASS][12] -> [FAIL][13] ([i915#5784]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_eio@unwedge-stress.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglb: NOTRUN -> [FAIL][14] ([i915#6117]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@gem_exec_balancer@parallel-ordering.html - shard-iclb: NOTRUN -> [SKIP][15] ([i915#4525]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglb: NOTRUN -> [FAIL][16] ([i915#2842]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-glk: NOTRUN -> [FAIL][17] ([i915#2842]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [PASS][18] -> [FAIL][19] ([i915#2842]) +2 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html - shard-kbl: [PASS][20] -> [FAIL][21] ([i915#2842]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-pace@rcs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-tglb: [PASS][22] -> [FAIL][23] ([i915#2842]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_exec_fair@basic-pace@vecs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-kbl: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#4613]) +2 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl3/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#4613]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html - shard-iclb: NOTRUN -> [SKIP][26] ([i915#4613]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@gem_lmem_swapping@verify-ccs.html - shard-apl: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#4613]) +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@gem_lmem_swapping@verify-ccs.html - shard-tglb: NOTRUN -> [SKIP][28] ([i915#4613]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap_gtt@coherency: - shard-tglb: NOTRUN -> [SKIP][29] ([fdo#111656]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_mmap_gtt@coherency.html - shard-iclb: NOTRUN -> [SKIP][30] ([fdo#109292]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_mmap_gtt@coherency.html * igt@gem_pwrite@basic-exhaustion: - shard-kbl: NOTRUN -> [WARN][31] ([i915#2658]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-buffer: - shard-tglb: NOTRUN -> [SKIP][32] ([i915#4270]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-iclb: NOTRUN -> [SKIP][33] ([i915#4270]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][34] ([i915#768]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_userptr_blits@coherency-sync: - shard-iclb: NOTRUN -> [SKIP][35] ([fdo#109290]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@coherency-sync.html - shard-tglb: NOTRUN -> [SKIP][36] ([fdo#110542]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-apl: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3323]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gem_userptr_blits@dmabuf-sync.html - shard-tglb: NOTRUN -> [SKIP][38] ([i915#3323]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_userptr_blits@dmabuf-sync.html - shard-glk: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#3323]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html - shard-iclb: NOTRUN -> [SKIP][40] ([i915#3323]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@gem_userptr_blits@dmabuf-sync.html - shard-kbl: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3323]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglb: NOTRUN -> [SKIP][42] ([i915#3297]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-iclb: NOTRUN -> [SKIP][43] ([i915#3297]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gen3_render_tiledx_blits: - shard-tglb: NOTRUN -> [SKIP][44] ([fdo#109289]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gen3_render_tiledx_blits.html - shard-iclb: NOTRUN -> [SKIP][45] ([fdo#109289]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gen3_render_tiledx_blits.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][46] -> [DMESG-WARN][47] ([i915#5566] / [i915#716]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@gen9_exec_parse@allowed-single.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@secure-batches: - shard-iclb: NOTRUN -> [SKIP][48] ([i915#2856]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb1/igt@gen9_exec_parse@secure-batches.html - shard-tglb: NOTRUN -> [SKIP][49] ([i915#2527] / [i915#2856]) +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gen9_exec_parse@secure-batches.html * igt@i915_pm_dc@dc6-dpms: - shard-tglb: NOTRUN -> [FAIL][50] ([i915#454]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html - shard-kbl: NOTRUN -> [FAIL][51] ([i915#454]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_dc@dc6-dpms.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-tglb: NOTRUN -> [SKIP][52] ([i915#1769]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_atomic_transition@plane-all-modeset-transition.html - shard-iclb: NOTRUN -> [SKIP][53] ([i915#1769]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-tglb: NOTRUN -> [SKIP][54] ([i915#5286]) +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-iclb: NOTRUN -> [SKIP][55] ([i915#5286]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglb: [PASS][56] -> [FAIL][57] ([i915#3743]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-kbl: NOTRUN -> [SKIP][58] ([fdo#109271]) +151 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-tglb: NOTRUN -> [SKIP][59] ([fdo#111615]) +1 similar issue [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#110723]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: - shard-tglb: NOTRUN -> [SKIP][61] ([i915#6095]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#3886]) +7 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-kbl: NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#3886]) +10 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][64] ([i915#3689] / [i915#3886]) +2 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html - shard-glk: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#3886]) +5 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html - shard-iclb: NOTRUN -> [SKIP][66] ([fdo#109278] / [i915#3886]) +6 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][67] ([fdo#111615] / [i915#3689]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs: - shard-glk: NOTRUN -> [SKIP][68] ([fdo#109271]) +72 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][69] ([i915#3689]) +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_color@pipe-d-gamma: - shard-iclb: NOTRUN -> [SKIP][70] ([fdo#109278] / [i915#1149]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_color@pipe-d-gamma.html * igt@kms_color_chamelium@pipe-a-gamma: - shard-snb: NOTRUN -> [SKIP][71] ([fdo#109271] / [fdo#111827]) +6 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb5/igt@kms_color_chamelium@pipe-a-gamma.html - shard-glk: NOTRUN -> [SKIP][72] ([fdo#109271] / [fdo#111827]) +3 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_color_chamelium@pipe-a-gamma.html * igt@kms_color_chamelium@pipe-b-degamma: - shard-apl: NOTRUN -> [SKIP][73] ([fdo#109271] / [fdo#111827]) +6 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_color_chamelium@pipe-b-degamma.html * igt@kms_color_chamelium@pipe-c-ctm-0-75: - shard-kbl: NOTRUN -> [SKIP][74] ([fdo#109271] / [fdo#111827]) +10 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_color_chamelium@pipe-c-ctm-0-75.html * igt@kms_color_chamelium@pipe-c-gamma: - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#109284] / [fdo#111827]) +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_color_chamelium@pipe-c-gamma.html * igt@kms_color_chamelium@pipe-d-ctm-0-25: - shard-tglb: NOTRUN -> [SKIP][76] ([fdo#109284] / [fdo#111827]) +3 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_color_chamelium@pipe-d-ctm-0-25.html * igt@kms_content_protection@srm: - shard-kbl: NOTRUN -> [TIMEOUT][77] ([i915#1319]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen: - shard-iclb: NOTRUN -> [SKIP][78] ([fdo#109278]) +16 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html * igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen: - shard-iclb: NOTRUN -> [SKIP][79] ([fdo#109278] / [fdo#109279]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen.html * igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding: - shard-tglb: NOTRUN -> [SKIP][80] ([i915#3359]) +1 similar issue [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding: - shard-tglb: NOTRUN -> [SKIP][81] ([fdo#109279] / [i915#3359]) +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding.html * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: - shard-tglb: NOTRUN -> [SKIP][82] ([i915#3319]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [PASS][83] -> [FAIL][84] ([i915#72]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-iclb: NOTRUN -> [SKIP][85] ([fdo#109274] / [fdo#109278]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled: - shard-tglb: NOTRUN -> [SKIP][86] ([i915#5287]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html - shard-iclb: NOTRUN -> [SKIP][87] ([i915#5287]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-tglb: NOTRUN -> [SKIP][88] ([fdo#109274] / [fdo#111825]) +2 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html - shard-iclb: NOTRUN -> [SKIP][89] ([fdo#109274]) +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][90] -> [FAIL][91] ([i915#2122]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1: - shard-kbl: [PASS][92] -> [DMESG-WARN][93] ([i915#180]) +5 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-apl: [PASS][94] -> [DMESG-WARN][95] ([i915#180]) +1 similar issue [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@kms_flip@flip-vs-suspend@c-dp1.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-iclb: NOTRUN -> [SKIP][96] ([fdo#109280]) +9 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-apl: NOTRUN -> [SKIP][97] ([fdo#109271]) +100 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: - shard-tglb: NOTRUN -> [SKIP][98] ([fdo#109280] / [fdo#111825]) +11 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d: - shard-apl: NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#533]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html - shard-glk: NOTRUN -> [SKIP][100] ([fdo#109271] / [i915#533]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html * igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence: - shard-kbl: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#533]) +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-apl: NOTRUN -> [FAIL][102] ([fdo#108145] / [i915#265]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-kbl: NOTRUN -> [FAIL][103] ([fdo#108145] / [i915#265]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-glk: NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#658]) +2 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-iclb: NOTRUN -> [SKIP][105] ([fdo#109642] / [fdo#111068] / [i915#658]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-kbl: NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#658]) +2 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-apl: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#658]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglb: NOTRUN -> [SKIP][108] ([i915#1911]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: [PASS][109] -> [SKIP][110] ([fdo#109441]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr@psr2_no_drrs.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@kms_psr@psr2_no_drrs.html * igt@nouveau_crc@pipe-b-source-outp-inactive: - shard-tglb: NOTRUN -> [SKIP][111] ([i915#2530]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@nouveau_crc@pipe-b-source-outp-inactive.html - shard-iclb: NOTRUN -> [SKIP][112] ([i915#2530]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@nouveau_crc@pipe-b-source-outp-inactive.html * igt@prime_nv_api@i915_self_import: - shard-tglb: NOTRUN -> [SKIP][113] ([fdo#109291]) +1 similar issue [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@prime_nv_api@i915_self_import.html - shard-iclb: NOTRUN -> [SKIP][114] ([fdo#109291]) +1 similar issue [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@prime_nv_api@i915_self_import.html * igt@prime_nv_pcopy@test3_5: - shard-snb: NOTRUN -> [SKIP][115] ([fdo#109271]) +193 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@prime_nv_pcopy@test3_5.html * igt@sw_sync@sync_merge: - shard-apl: NOTRUN -> [FAIL][116] ([i915#6140]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sw_sync@sync_merge.html * igt@sysfs_clients@create: - shard-kbl: NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#2994]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@sysfs_clients@create.html * igt@sysfs_clients@recycle-many: - shard-apl: NOTRUN -> [SKIP][118] ([fdo#109271] / [i915#2994]) +1 similar issue [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sysfs_clients@recycle-many.html * igt@sysfs_clients@split-50: - shard-tglb: NOTRUN -> [SKIP][119] ([i915#2994]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@sysfs_clients@split-50.html - shard-glk: NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#2994]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk8/igt@sysfs_clients@split-50.html - shard-iclb: NOTRUN -> [SKIP][121] ([i915#2994]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@sysfs_clients@split-50.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - {shard-tglu}: [FAIL][122] ([i915#6268]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@legacy-engines-hang@blt: - {shard-rkl}: [SKIP][124] ([i915#6252]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-4/igt@gem_ctx_persistence@legacy-engines-hang@blt.html * igt@gem_ctx_persistence@legacy-engines-hostile@bsd1: - {shard-dg1}: [FAIL][126] ([i915#4883]) -> [PASS][127] +1 similar issue [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-18/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-16/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html * igt@gem_eio@kms: - shard-tglb: [FAIL][128] ([i915#5784]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_eio@kms.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_eio@kms.html * igt@gem_exec_balancer@parallel-balancer: - shard-iclb: [SKIP][130] ([i915#4525]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb6/igt@gem_exec_balancer@parallel-balancer.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_fair@basic-none@vcs1: - shard-kbl: [FAIL][132] ([i915#2842]) -> [PASS][133] +2 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-none@vcs1.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - {shard-rkl}: [SKIP][134] ([fdo#109313]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_reloc@basic-write-read-noreloc: - {shard-rkl}: [SKIP][136] ([i915#3281]) -> [PASS][137] +4 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_whisper@basic-contexts-priority-all: - shard-glk: [DMESG-WARN][138] ([i915#118]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk6/igt@gem_exec_whisper@basic-contexts-priority-all.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_whisper@basic-contexts-priority-all.html * igt@gem_partial_pwrite_pread@writes-after-reads: - {shard-rkl}: [SKIP][140] ([i915#3282]) -> [PASS][141] +2 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [DMESG-WARN][142] ([i915#5566] / [i915#716]) -> [PASS][143] [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk1/igt@gen9_exec_parse@allowed-single.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-chained: - {shard-rkl}: [SKIP][144] ([i915#2527]) -> [PASS][145] +1 similar issue [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][146] ([i915#454]) -> [PASS][147] [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@i915_pm_dc@dc6-psr.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rpm@dpms-non-lpsp: - {shard-dg1}: [SKIP][148] ([i915#1397]) -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-16/igt@i915_pm_rpm@dpms-non-lpsp.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-18/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-kbl: [INCOMPLETE][150] ([i915#4939]) -> [PASS][151] [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_selftest@live@hangcheck: - shard-snb: [INCOMPLETE][152] ([i915#3921]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-snb4/igt@i915_selftest@live@hangcheck.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb2/igt@i915_selftest@live@hangcheck.html * igt@i915_suspend@fence-restore-untiled: - shard-kbl: [DMESG-WARN][154] ([i915#180]) -> [PASS][155] +1 similar issue [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@i915_suspend@fence-restore-untiled.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@i915_suspend@fence-restore-untiled.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-tglb: [FAIL][156] ([i915#3743]) -> [PASS][157] +3 similar issues [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_color@pipe-a-ctm-red-to-blue: - {shard-rkl}: [SKIP][158] ([i915#1149] / [i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_color@pipe-a-ctm-red-to-blue.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_color@pipe-a-ctm-red-to-blue.html * igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen: - {shard-rkl}: [SKIP][160] ([fdo#112022] / [i915#4070]) -> [PASS][161] +1 similar issue [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html * igt@kms_cursor_legacy@cursora-vs-flipa-varying-size: - {shard-rkl}: [SKIP][162] ([fdo#111825] / [i915#4070]) -> [PASS][163] +1 similar issue [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled: - {shard-rkl}: [SKIP][164] ([fdo#111314] / [i915#4098] / [i915#4369]) -> [PASS][165] +2 similar issues [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: - {shard-rkl}: [SKIP][166] ([i915#1849] / [i915#4098]) -> [PASS][167] +1 similar issue [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - shard-apl: [DMESG-WARN][168] ([i915#180]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: - {shard-rkl}: [SKIP][170] ([i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1: - shard-iclb: [SKIP][172] ([i915#5176]) -> [PASS][173] +2 similar issues [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-iclb: [SKIP][174] ([fdo#109441]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_cpu.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_psr@suspend: - {shard-rkl}: [SKIP][176] ([i915#1072]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_psr@suspend.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_psr@suspend.html * igt@kms_vblank@pipe-a-accuracy-idle: - shard-glk: [FAIL][178] ([i915#43]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@kms_vblank@pipe-a-accuracy-idle.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_vblank@pipe-a-accuracy-idle.html * igt@kms_vblank@pipe-b-query-forked: - {shard-rkl}: [SKIP][180] ([i915#1845] / [i915#4098]) -> [PASS][181] +4 similar issues [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_vblank@pipe-b-query-forked.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_vblank@pipe-b-query-forked.html #### Warnings #### * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-iclb: [FAIL][182] ([i915#2842]) -> [FAIL][183] ([i915#2852]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@gem_exec_fair@basic-none-rrul@rcs0.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-tglb: [SKIP][184] ([i915#2848]) -> [FAIL][185] ([i915#2842]) +4 similar issues [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@gem_exec_fair@basic-none@vcs0.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [FAIL][186] ([i915#2842]) -> [SKIP][187] ([i915#2848]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-iclb: [SKIP][188] ([i915#658]) -> [SKIP][189] ([i915#588]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-iclb: [SKIP][190] ([i915#2920]) -> [SKIP][191] ([i915#658]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-iclb: [SKIP][192] ([i915#2920]) -> [SKIP][193] ([fdo#111068] / [i915#658]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-iclb: [SKIP][194] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [FAIL][195] ([i915#5939]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb4/igt@kms_psr2_su@page_flip-p010.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr2_su@page_flip-p010.html * igt@runner@aborted: - shard-apl: ([FAIL][196], [FAIL][197], [FAIL][198]) ([fdo#109271] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][199], [FAIL][200], [FAIL][201], [FAIL][202]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@runner@aborted.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@runner@aborted.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@runner@aborted.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@runner@aborted.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@runner@aborted.html - shard-kbl: ([FAIL][203], [FAIL][204], [FAIL][205], [FAIL][206], [FAIL][207]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][208], [FAIL][209], [FAIL][210], [FAIL][211], [FAIL][212], [FAIL][213]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl3/igt@runner@aborted.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl7/igt@runner@aborted.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@runner@aborted.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109290]: https://bugs.freedesktop.org/show_bug.cgi?id=109290 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109292]: https://bugs.freedesktop.org/show_bug.cgi?id=109292 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314 [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#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112022]: https://bugs.freedesktop.org/show_bug.cgi?id=112022 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911 [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2848]: https://gitlab.freedesktop.org/drm/intel/issues/2848 [i915#2852]: https://gitlab.freedesktop.org/drm/intel/issues/2852 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3376]: https://gitlab.freedesktop.org/drm/intel/issues/3376 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3614]: https://gitlab.freedesktop.org/drm/intel/issues/3614 [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#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810 [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278 [i915#43]: https://gitlab.freedesktop.org/drm/intel/issues/43 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4778]: https://gitlab.freedesktop.org/drm/intel/issues/4778 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4842]: https://gitlab.freedesktop.org/drm/intel/issues/4842 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4883]: https://gitlab.freedesktop.org/drm/intel/issues/4883 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893 [i915#4904]: https://gitlab.freedesktop.org/drm/intel/issues/4904 [i915#4939]: https://gitlab.freedesktop.org/drm/intel/issues/4939 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5174]: https://gitlab.freedesktop.org/drm/intel/issues/5174 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588 [i915#5939]: https://gitlab.freedesktop.org/drm/intel/issues/5939 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6140]: https://gitlab.freedesktop.org/drm/intel/issues/6140 [i915#6141]: https://gitlab.freedesktop.org/drm/intel/issues/6141 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6283]: https://gitlab.freedesktop.org/drm/intel/issues/6283 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6537 -> IGTPW_7354 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_11788: ec6f2ba27fe4ed0f5f6aca3977f62793b65bb1b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7354: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html IGT_6537: 331658a8475c8b0c0f7ffe5268a7318ef83da34e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html [-- Attachment #2: Type: text/html, Size: 64662 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Extend i915_pm_rc6_residency (rev2) 2022-06-21 13:45 [igt-dev] [PATCH i-g-t v2 0/2] Extend i915_pm_rc6_residency Riana Tauro ` (5 preceding siblings ...) 2022-06-27 7:13 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork @ 2022-06-27 8:18 ` Patchwork 2022-06-27 14:16 ` Patchwork 7 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2022-06-27 8:18 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 57303 bytes --] == Series Details == Series: Extend i915_pm_rc6_residency (rev2) URL : https://patchwork.freedesktop.org/series/105413/ State : success == Summary == CI Bug Log - changes from CI_DRM_11788_full -> IGTPW_7354_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html Participating hosts (13 -> 10) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_7354_full: ### IGT changes ### #### Possible regressions #### * {igt@i915_pm_rc6_residency@rc6-idle@rcs0} (NEW): - shard-tglb: NOTRUN -> [WARN][1] +3 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html - shard-iclb: NOTRUN -> [WARN][2] +3 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html - {shard-rkl}: NOTRUN -> [WARN][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html - {shard-tglu}: NOTRUN -> [WARN][4] +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: - {shard-rkl}: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: - {shard-dg1}: NOTRUN -> [FAIL][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-19/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html New tests --------- New tests have been introduced between CI_DRM_11788_full and IGTPW_7354_full: ### New IGT tests (4) ### * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - Statuses : 6 pass(s) 3 warn(s) - Exec time: [12.20, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - Statuses : 5 pass(s) 4 warn(s) - Exec time: [12.20, 12.26] s * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - Statuses : 6 pass(s) 3 warn(s) - Exec time: [12.19, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - Statuses : 5 pass(s) 3 warn(s) - Exec time: [12.20, 12.26] s Known issues ------------ Here are the changes found in IGTPW_7354_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@unbind-reset-rebind: - shard-tglb: [PASS][7] -> [INCOMPLETE][8] ([i915#6283]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb8/igt@device_reset@unbind-reset-rebind.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@device_reset@unbind-reset-rebind.html * igt@gem_ctx_persistence@engines-hang: - shard-snb: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@gem_ctx_persistence@engines-hang.html * igt@gem_ctx_sseu@mmap-args: - shard-tglb: NOTRUN -> [SKIP][10] ([i915#280]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-suspend: - shard-kbl: NOTRUN -> [INCOMPLETE][11] ([i915#3614]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@unwedge-stress: - shard-tglb: [PASS][12] -> [FAIL][13] ([i915#5784]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_eio@unwedge-stress.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglb: NOTRUN -> [FAIL][14] ([i915#6117]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@gem_exec_balancer@parallel-ordering.html - shard-iclb: NOTRUN -> [SKIP][15] ([i915#4525]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglb: NOTRUN -> [FAIL][16] ([i915#2842]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-glk: NOTRUN -> [FAIL][17] ([i915#2842]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [PASS][18] -> [FAIL][19] ([i915#2842]) +2 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html - shard-kbl: [PASS][20] -> [FAIL][21] ([i915#2842]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-pace@rcs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-tglb: [PASS][22] -> [FAIL][23] ([i915#2842]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_exec_fair@basic-pace@vecs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-kbl: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#4613]) +2 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl3/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#4613]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html - shard-iclb: NOTRUN -> [SKIP][26] ([i915#4613]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@gem_lmem_swapping@verify-ccs.html - shard-apl: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#4613]) +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@gem_lmem_swapping@verify-ccs.html - shard-tglb: NOTRUN -> [SKIP][28] ([i915#4613]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap_gtt@coherency: - shard-tglb: NOTRUN -> [SKIP][29] ([fdo#111656]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_mmap_gtt@coherency.html - shard-iclb: NOTRUN -> [SKIP][30] ([fdo#109292]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_mmap_gtt@coherency.html * igt@gem_pwrite@basic-exhaustion: - shard-kbl: NOTRUN -> [WARN][31] ([i915#2658]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-buffer: - shard-tglb: NOTRUN -> [SKIP][32] ([i915#4270]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-iclb: NOTRUN -> [SKIP][33] ([i915#4270]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][34] ([i915#768]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_userptr_blits@coherency-sync: - shard-iclb: NOTRUN -> [SKIP][35] ([fdo#109290]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@coherency-sync.html - shard-tglb: NOTRUN -> [SKIP][36] ([fdo#110542]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-apl: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3323]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gem_userptr_blits@dmabuf-sync.html - shard-tglb: NOTRUN -> [SKIP][38] ([i915#3323]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_userptr_blits@dmabuf-sync.html - shard-glk: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#3323]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html - shard-iclb: NOTRUN -> [SKIP][40] ([i915#3323]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@gem_userptr_blits@dmabuf-sync.html - shard-kbl: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3323]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglb: NOTRUN -> [SKIP][42] ([i915#3297]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-iclb: NOTRUN -> [SKIP][43] ([i915#3297]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gen3_render_tiledx_blits: - shard-tglb: NOTRUN -> [SKIP][44] ([fdo#109289]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gen3_render_tiledx_blits.html - shard-iclb: NOTRUN -> [SKIP][45] ([fdo#109289]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gen3_render_tiledx_blits.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][46] -> [DMESG-WARN][47] ([i915#5566] / [i915#716]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@gen9_exec_parse@allowed-single.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@secure-batches: - shard-iclb: NOTRUN -> [SKIP][48] ([i915#2856]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb1/igt@gen9_exec_parse@secure-batches.html - shard-tglb: NOTRUN -> [SKIP][49] ([i915#2527] / [i915#2856]) +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gen9_exec_parse@secure-batches.html * igt@i915_pm_dc@dc6-dpms: - shard-tglb: NOTRUN -> [FAIL][50] ([i915#454]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html - shard-kbl: NOTRUN -> [FAIL][51] ([i915#454]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_dc@dc6-dpms.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-tglb: NOTRUN -> [SKIP][52] ([i915#1769]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_atomic_transition@plane-all-modeset-transition.html - shard-iclb: NOTRUN -> [SKIP][53] ([i915#1769]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-tglb: NOTRUN -> [SKIP][54] ([i915#5286]) +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-iclb: NOTRUN -> [SKIP][55] ([i915#5286]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglb: [PASS][56] -> [FAIL][57] ([i915#3743]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-kbl: NOTRUN -> [SKIP][58] ([fdo#109271]) +151 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-tglb: NOTRUN -> [SKIP][59] ([fdo#111615]) +1 similar issue [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#110723]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: - shard-tglb: NOTRUN -> [SKIP][61] ([i915#6095]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#3886]) +7 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-kbl: NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#3886]) +10 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][64] ([i915#3689] / [i915#3886]) +2 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html - shard-glk: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#3886]) +5 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html - shard-iclb: NOTRUN -> [SKIP][66] ([fdo#109278] / [i915#3886]) +6 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][67] ([fdo#111615] / [i915#3689]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs: - shard-glk: NOTRUN -> [SKIP][68] ([fdo#109271]) +72 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][69] ([i915#3689]) +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_color@pipe-d-gamma: - shard-iclb: NOTRUN -> [SKIP][70] ([fdo#109278] / [i915#1149]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_color@pipe-d-gamma.html * igt@kms_color_chamelium@pipe-a-gamma: - shard-snb: NOTRUN -> [SKIP][71] ([fdo#109271] / [fdo#111827]) +6 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb5/igt@kms_color_chamelium@pipe-a-gamma.html - shard-glk: NOTRUN -> [SKIP][72] ([fdo#109271] / [fdo#111827]) +3 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_color_chamelium@pipe-a-gamma.html * igt@kms_color_chamelium@pipe-b-degamma: - shard-apl: NOTRUN -> [SKIP][73] ([fdo#109271] / [fdo#111827]) +6 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_color_chamelium@pipe-b-degamma.html * igt@kms_color_chamelium@pipe-c-ctm-0-75: - shard-kbl: NOTRUN -> [SKIP][74] ([fdo#109271] / [fdo#111827]) +10 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_color_chamelium@pipe-c-ctm-0-75.html * igt@kms_color_chamelium@pipe-c-gamma: - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#109284] / [fdo#111827]) +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_color_chamelium@pipe-c-gamma.html * igt@kms_color_chamelium@pipe-d-ctm-0-25: - shard-tglb: NOTRUN -> [SKIP][76] ([fdo#109284] / [fdo#111827]) +3 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_color_chamelium@pipe-d-ctm-0-25.html * igt@kms_content_protection@srm: - shard-kbl: NOTRUN -> [TIMEOUT][77] ([i915#1319]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen: - shard-iclb: NOTRUN -> [SKIP][78] ([fdo#109278]) +16 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html * igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen: - shard-iclb: NOTRUN -> [SKIP][79] ([fdo#109278] / [fdo#109279]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen.html * igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding: - shard-tglb: NOTRUN -> [SKIP][80] ([i915#3359]) +1 similar issue [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding: - shard-tglb: NOTRUN -> [SKIP][81] ([fdo#109279] / [i915#3359]) +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding.html * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: - shard-tglb: NOTRUN -> [SKIP][82] ([i915#3319]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [PASS][83] -> [FAIL][84] ([i915#72]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-iclb: NOTRUN -> [SKIP][85] ([fdo#109274] / [fdo#109278]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled: - shard-tglb: NOTRUN -> [SKIP][86] ([i915#5287]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html - shard-iclb: NOTRUN -> [SKIP][87] ([i915#5287]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-tglb: NOTRUN -> [SKIP][88] ([fdo#109274] / [fdo#111825]) +2 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html - shard-iclb: NOTRUN -> [SKIP][89] ([fdo#109274]) +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][90] -> [FAIL][91] ([i915#2122]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1: - shard-kbl: [PASS][92] -> [DMESG-WARN][93] ([i915#180]) +5 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-apl: [PASS][94] -> [DMESG-WARN][95] ([i915#180]) +1 similar issue [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@kms_flip@flip-vs-suspend@c-dp1.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-iclb: NOTRUN -> [SKIP][96] ([fdo#109280]) +9 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-apl: NOTRUN -> [SKIP][97] ([fdo#109271]) +100 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: - shard-tglb: NOTRUN -> [SKIP][98] ([fdo#109280] / [fdo#111825]) +11 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d: - shard-apl: NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#533]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html - shard-glk: NOTRUN -> [SKIP][100] ([fdo#109271] / [i915#533]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html * igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence: - shard-kbl: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#533]) +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-apl: NOTRUN -> [FAIL][102] ([fdo#108145] / [i915#265]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-kbl: NOTRUN -> [FAIL][103] ([fdo#108145] / [i915#265]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-glk: NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#658]) +2 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-iclb: NOTRUN -> [SKIP][105] ([fdo#109642] / [fdo#111068] / [i915#658]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-kbl: NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#658]) +2 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-apl: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#658]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglb: NOTRUN -> [SKIP][108] ([i915#1911]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: [PASS][109] -> [SKIP][110] ([fdo#109441]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr@psr2_no_drrs.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@kms_psr@psr2_no_drrs.html * igt@nouveau_crc@pipe-b-source-outp-inactive: - shard-tglb: NOTRUN -> [SKIP][111] ([i915#2530]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@nouveau_crc@pipe-b-source-outp-inactive.html - shard-iclb: NOTRUN -> [SKIP][112] ([i915#2530]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@nouveau_crc@pipe-b-source-outp-inactive.html * igt@prime_nv_api@i915_self_import: - shard-tglb: NOTRUN -> [SKIP][113] ([fdo#109291]) +1 similar issue [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@prime_nv_api@i915_self_import.html - shard-iclb: NOTRUN -> [SKIP][114] ([fdo#109291]) +1 similar issue [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@prime_nv_api@i915_self_import.html * igt@prime_nv_pcopy@test3_5: - shard-snb: NOTRUN -> [SKIP][115] ([fdo#109271]) +193 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@prime_nv_pcopy@test3_5.html * igt@sw_sync@sync_merge: - shard-apl: NOTRUN -> [FAIL][116] ([i915#6140]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sw_sync@sync_merge.html * igt@sysfs_clients@create: - shard-kbl: NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#2994]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@sysfs_clients@create.html * igt@sysfs_clients@recycle-many: - shard-apl: NOTRUN -> [SKIP][118] ([fdo#109271] / [i915#2994]) +1 similar issue [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sysfs_clients@recycle-many.html * igt@sysfs_clients@split-50: - shard-tglb: NOTRUN -> [SKIP][119] ([i915#2994]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@sysfs_clients@split-50.html - shard-glk: NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#2994]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk8/igt@sysfs_clients@split-50.html - shard-iclb: NOTRUN -> [SKIP][121] ([i915#2994]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@sysfs_clients@split-50.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - {shard-tglu}: [FAIL][122] ([i915#6268]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@legacy-engines-hang@blt: - {shard-rkl}: [SKIP][124] ([i915#6252]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-4/igt@gem_ctx_persistence@legacy-engines-hang@blt.html * igt@gem_ctx_persistence@legacy-engines-hostile@bsd1: - {shard-dg1}: [FAIL][126] ([i915#4883]) -> [PASS][127] +1 similar issue [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-18/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-16/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html * igt@gem_eio@kms: - shard-tglb: [FAIL][128] ([i915#5784]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_eio@kms.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_eio@kms.html * igt@gem_exec_balancer@parallel-balancer: - shard-iclb: [SKIP][130] ([i915#4525]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb6/igt@gem_exec_balancer@parallel-balancer.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_fair@basic-none@vcs1: - shard-kbl: [FAIL][132] ([i915#2842]) -> [PASS][133] +2 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-none@vcs1.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - {shard-rkl}: [SKIP][134] ([fdo#109313]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_reloc@basic-write-read-noreloc: - {shard-rkl}: [SKIP][136] ([i915#3281]) -> [PASS][137] +4 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_whisper@basic-contexts-priority-all: - shard-glk: [DMESG-WARN][138] ([i915#118]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk6/igt@gem_exec_whisper@basic-contexts-priority-all.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_whisper@basic-contexts-priority-all.html * igt@gem_partial_pwrite_pread@writes-after-reads: - {shard-rkl}: [SKIP][140] ([i915#3282]) -> [PASS][141] +2 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [DMESG-WARN][142] ([i915#5566] / [i915#716]) -> [PASS][143] [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk1/igt@gen9_exec_parse@allowed-single.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-chained: - {shard-rkl}: [SKIP][144] ([i915#2527]) -> [PASS][145] +1 similar issue [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][146] ([i915#454]) -> [PASS][147] [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@i915_pm_dc@dc6-psr.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rpm@dpms-non-lpsp: - {shard-dg1}: [SKIP][148] ([i915#1397]) -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-16/igt@i915_pm_rpm@dpms-non-lpsp.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-18/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-kbl: [INCOMPLETE][150] ([i915#4939]) -> [PASS][151] [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_selftest@live@hangcheck: - shard-snb: [INCOMPLETE][152] ([i915#3921]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-snb4/igt@i915_selftest@live@hangcheck.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb2/igt@i915_selftest@live@hangcheck.html * igt@i915_suspend@fence-restore-untiled: - shard-kbl: [DMESG-WARN][154] ([i915#180]) -> [PASS][155] +1 similar issue [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@i915_suspend@fence-restore-untiled.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@i915_suspend@fence-restore-untiled.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-tglb: [FAIL][156] ([i915#3743]) -> [PASS][157] +3 similar issues [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_color@pipe-a-ctm-red-to-blue: - {shard-rkl}: [SKIP][158] ([i915#1149] / [i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_color@pipe-a-ctm-red-to-blue.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_color@pipe-a-ctm-red-to-blue.html * igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen: - {shard-rkl}: [SKIP][160] ([fdo#112022] / [i915#4070]) -> [PASS][161] +1 similar issue [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html * igt@kms_cursor_legacy@cursora-vs-flipa-varying-size: - {shard-rkl}: [SKIP][162] ([fdo#111825] / [i915#4070]) -> [PASS][163] +1 similar issue [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled: - {shard-rkl}: [SKIP][164] ([fdo#111314] / [i915#4098] / [i915#4369]) -> [PASS][165] +2 similar issues [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: - {shard-rkl}: [SKIP][166] ([i915#1849] / [i915#4098]) -> [PASS][167] +1 similar issue [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - shard-apl: [DMESG-WARN][168] ([i915#180]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: - {shard-rkl}: [SKIP][170] ([i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1: - shard-iclb: [SKIP][172] ([i915#5176]) -> [PASS][173] +2 similar issues [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-iclb: [SKIP][174] ([fdo#109441]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_cpu.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_psr@suspend: - {shard-rkl}: [SKIP][176] ([i915#1072]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_psr@suspend.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_psr@suspend.html * igt@kms_vblank@pipe-a-accuracy-idle: - shard-glk: [FAIL][178] ([i915#43]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@kms_vblank@pipe-a-accuracy-idle.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_vblank@pipe-a-accuracy-idle.html * igt@kms_vblank@pipe-b-query-forked: - {shard-rkl}: [SKIP][180] ([i915#1845] / [i915#4098]) -> [PASS][181] +4 similar issues [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_vblank@pipe-b-query-forked.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_vblank@pipe-b-query-forked.html #### Warnings #### * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-iclb: [FAIL][182] ([i915#2842]) -> [FAIL][183] ([i915#2852]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@gem_exec_fair@basic-none-rrul@rcs0.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-tglb: [SKIP][184] ([i915#2848]) -> [FAIL][185] ([i915#2842]) +4 similar issues [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@gem_exec_fair@basic-none@vcs0.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [FAIL][186] ([i915#2842]) -> [SKIP][187] ([i915#2848]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-iclb: [SKIP][188] ([i915#658]) -> [SKIP][189] ([i915#588]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-iclb: [SKIP][190] ([i915#2920]) -> [SKIP][191] ([i915#658]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-iclb: [SKIP][192] ([i915#2920]) -> [SKIP][193] ([fdo#111068] / [i915#658]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-iclb: [SKIP][194] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [FAIL][195] ([i915#5939]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb4/igt@kms_psr2_su@page_flip-p010.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr2_su@page_flip-p010.html * igt@runner@aborted: - shard-apl: ([FAIL][196], [FAIL][197], [FAIL][198]) ([fdo#109271] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][199], [FAIL][200], [FAIL][201], [FAIL][202]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@runner@aborted.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@runner@aborted.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@runner@aborted.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@runner@aborted.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@runner@aborted.html - shard-kbl: ([FAIL][203], [FAIL][204], [FAIL][205], [FAIL][206], [FAIL][207]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][208], [FAIL][209], [FAIL][210], [FAIL][211], [FAIL][212], [FAIL][213]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl3/igt@runner@aborted.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl7/igt@runner@aborted.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@runner@aborted.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109290]: https://bugs.freedesktop.org/show_bug.cgi?id=109290 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109292]: https://bugs.freedesktop.org/show_bug.cgi?id=109292 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314 [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#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112022]: https://bugs.freedesktop.org/show_bug.cgi?id=112022 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911 [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2848]: https://gitlab.freedesktop.org/drm/intel/issues/2848 [i915#2852]: https://gitlab.freedesktop.org/drm/intel/issues/2852 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3376]: https://gitlab.freedesktop.org/drm/intel/issues/3376 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3614]: https://gitlab.freedesktop.org/drm/intel/issues/3614 [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#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810 [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278 [i915#43]: https://gitlab.freedesktop.org/drm/intel/issues/43 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4778]: https://gitlab.freedesktop.org/drm/intel/issues/4778 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4842]: https://gitlab.freedesktop.org/drm/intel/issues/4842 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4883]: https://gitlab.freedesktop.org/drm/intel/issues/4883 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893 [i915#4904]: https://gitlab.freedesktop.org/drm/intel/issues/4904 [i915#4939]: https://gitlab.freedesktop.org/drm/intel/issues/4939 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5174]: https://gitlab.freedesktop.org/drm/intel/issues/5174 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588 [i915#5939]: https://gitlab.freedesktop.org/drm/intel/issues/5939 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6140]: https://gitlab.freedesktop.org/drm/intel/issues/6140 [i915#6141]: https://gitlab.freedesktop.org/drm/intel/issues/6141 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6283]: https://gitlab.freedesktop.org/drm/intel/issues/6283 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6537 -> IGTPW_7354 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_11788: ec6f2ba27fe4ed0f5f6aca3977f62793b65bb1b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7354: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html IGT_6537: 331658a8475c8b0c0f7ffe5268a7318ef83da34e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html [-- Attachment #2: Type: text/html, Size: 64662 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Extend i915_pm_rc6_residency (rev2) 2022-06-21 13:45 [igt-dev] [PATCH i-g-t v2 0/2] Extend i915_pm_rc6_residency Riana Tauro ` (6 preceding siblings ...) 2022-06-27 8:18 ` Patchwork @ 2022-06-27 14:16 ` Patchwork 7 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2022-06-27 14:16 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 57303 bytes --] == Series Details == Series: Extend i915_pm_rc6_residency (rev2) URL : https://patchwork.freedesktop.org/series/105413/ State : success == Summary == CI Bug Log - changes from CI_DRM_11788_full -> IGTPW_7354_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html Participating hosts (13 -> 10) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_7354_full: ### IGT changes ### #### Possible regressions #### * {igt@i915_pm_rc6_residency@rc6-idle@rcs0} (NEW): - shard-tglb: NOTRUN -> [WARN][1] +3 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html - shard-iclb: NOTRUN -> [WARN][2] +3 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html - {shard-rkl}: NOTRUN -> [WARN][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html - {shard-tglu}: NOTRUN -> [WARN][4] +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: - {shard-rkl}: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: - {shard-dg1}: NOTRUN -> [FAIL][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-19/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html New tests --------- New tests have been introduced between CI_DRM_11788_full and IGTPW_7354_full: ### New IGT tests (4) ### * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - Statuses : 6 pass(s) 3 warn(s) - Exec time: [12.20, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - Statuses : 5 pass(s) 4 warn(s) - Exec time: [12.20, 12.26] s * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - Statuses : 6 pass(s) 3 warn(s) - Exec time: [12.19, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - Statuses : 5 pass(s) 3 warn(s) - Exec time: [12.20, 12.26] s Known issues ------------ Here are the changes found in IGTPW_7354_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@unbind-reset-rebind: - shard-tglb: [PASS][7] -> [INCOMPLETE][8] ([i915#6283]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb8/igt@device_reset@unbind-reset-rebind.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@device_reset@unbind-reset-rebind.html * igt@gem_ctx_persistence@engines-hang: - shard-snb: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@gem_ctx_persistence@engines-hang.html * igt@gem_ctx_sseu@mmap-args: - shard-tglb: NOTRUN -> [SKIP][10] ([i915#280]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-suspend: - shard-kbl: NOTRUN -> [INCOMPLETE][11] ([i915#3614]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@unwedge-stress: - shard-tglb: [PASS][12] -> [FAIL][13] ([i915#5784]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_eio@unwedge-stress.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglb: NOTRUN -> [FAIL][14] ([i915#6117]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@gem_exec_balancer@parallel-ordering.html - shard-iclb: NOTRUN -> [SKIP][15] ([i915#4525]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglb: NOTRUN -> [FAIL][16] ([i915#2842]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-glk: NOTRUN -> [FAIL][17] ([i915#2842]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [PASS][18] -> [FAIL][19] ([i915#2842]) +2 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html - shard-kbl: [PASS][20] -> [FAIL][21] ([i915#2842]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-pace@rcs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-tglb: [PASS][22] -> [FAIL][23] ([i915#2842]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_exec_fair@basic-pace@vecs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-kbl: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#4613]) +2 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl3/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#4613]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html - shard-iclb: NOTRUN -> [SKIP][26] ([i915#4613]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@gem_lmem_swapping@verify-ccs.html - shard-apl: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#4613]) +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@gem_lmem_swapping@verify-ccs.html - shard-tglb: NOTRUN -> [SKIP][28] ([i915#4613]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap_gtt@coherency: - shard-tglb: NOTRUN -> [SKIP][29] ([fdo#111656]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_mmap_gtt@coherency.html - shard-iclb: NOTRUN -> [SKIP][30] ([fdo#109292]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_mmap_gtt@coherency.html * igt@gem_pwrite@basic-exhaustion: - shard-kbl: NOTRUN -> [WARN][31] ([i915#2658]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-buffer: - shard-tglb: NOTRUN -> [SKIP][32] ([i915#4270]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-iclb: NOTRUN -> [SKIP][33] ([i915#4270]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][34] ([i915#768]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_userptr_blits@coherency-sync: - shard-iclb: NOTRUN -> [SKIP][35] ([fdo#109290]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@coherency-sync.html - shard-tglb: NOTRUN -> [SKIP][36] ([fdo#110542]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-apl: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3323]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gem_userptr_blits@dmabuf-sync.html - shard-tglb: NOTRUN -> [SKIP][38] ([i915#3323]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@gem_userptr_blits@dmabuf-sync.html - shard-glk: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#3323]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html - shard-iclb: NOTRUN -> [SKIP][40] ([i915#3323]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@gem_userptr_blits@dmabuf-sync.html - shard-kbl: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3323]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglb: NOTRUN -> [SKIP][42] ([i915#3297]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-iclb: NOTRUN -> [SKIP][43] ([i915#3297]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gen3_render_tiledx_blits: - shard-tglb: NOTRUN -> [SKIP][44] ([fdo#109289]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@gen3_render_tiledx_blits.html - shard-iclb: NOTRUN -> [SKIP][45] ([fdo#109289]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gen3_render_tiledx_blits.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][46] -> [DMESG-WARN][47] ([i915#5566] / [i915#716]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@gen9_exec_parse@allowed-single.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@secure-batches: - shard-iclb: NOTRUN -> [SKIP][48] ([i915#2856]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb1/igt@gen9_exec_parse@secure-batches.html - shard-tglb: NOTRUN -> [SKIP][49] ([i915#2527] / [i915#2856]) +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gen9_exec_parse@secure-batches.html * igt@i915_pm_dc@dc6-dpms: - shard-tglb: NOTRUN -> [FAIL][50] ([i915#454]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html - shard-kbl: NOTRUN -> [FAIL][51] ([i915#454]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_dc@dc6-dpms.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-tglb: NOTRUN -> [SKIP][52] ([i915#1769]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_atomic_transition@plane-all-modeset-transition.html - shard-iclb: NOTRUN -> [SKIP][53] ([i915#1769]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-tglb: NOTRUN -> [SKIP][54] ([i915#5286]) +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-iclb: NOTRUN -> [SKIP][55] ([i915#5286]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglb: [PASS][56] -> [FAIL][57] ([i915#3743]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-kbl: NOTRUN -> [SKIP][58] ([fdo#109271]) +151 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-tglb: NOTRUN -> [SKIP][59] ([fdo#111615]) +1 similar issue [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#110723]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: - shard-tglb: NOTRUN -> [SKIP][61] ([i915#6095]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#3886]) +7 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-kbl: NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#3886]) +10 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][64] ([i915#3689] / [i915#3886]) +2 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html - shard-glk: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#3886]) +5 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk1/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html - shard-iclb: NOTRUN -> [SKIP][66] ([fdo#109278] / [i915#3886]) +6 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][67] ([fdo#111615] / [i915#3689]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs: - shard-glk: NOTRUN -> [SKIP][68] ([fdo#109271]) +72 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][69] ([i915#3689]) +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_color@pipe-d-gamma: - shard-iclb: NOTRUN -> [SKIP][70] ([fdo#109278] / [i915#1149]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_color@pipe-d-gamma.html * igt@kms_color_chamelium@pipe-a-gamma: - shard-snb: NOTRUN -> [SKIP][71] ([fdo#109271] / [fdo#111827]) +6 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb5/igt@kms_color_chamelium@pipe-a-gamma.html - shard-glk: NOTRUN -> [SKIP][72] ([fdo#109271] / [fdo#111827]) +3 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_color_chamelium@pipe-a-gamma.html * igt@kms_color_chamelium@pipe-b-degamma: - shard-apl: NOTRUN -> [SKIP][73] ([fdo#109271] / [fdo#111827]) +6 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_color_chamelium@pipe-b-degamma.html * igt@kms_color_chamelium@pipe-c-ctm-0-75: - shard-kbl: NOTRUN -> [SKIP][74] ([fdo#109271] / [fdo#111827]) +10 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_color_chamelium@pipe-c-ctm-0-75.html * igt@kms_color_chamelium@pipe-c-gamma: - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#109284] / [fdo#111827]) +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_color_chamelium@pipe-c-gamma.html * igt@kms_color_chamelium@pipe-d-ctm-0-25: - shard-tglb: NOTRUN -> [SKIP][76] ([fdo#109284] / [fdo#111827]) +3 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@kms_color_chamelium@pipe-d-ctm-0-25.html * igt@kms_content_protection@srm: - shard-kbl: NOTRUN -> [TIMEOUT][77] ([i915#1319]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen: - shard-iclb: NOTRUN -> [SKIP][78] ([fdo#109278]) +16 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html * igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen: - shard-iclb: NOTRUN -> [SKIP][79] ([fdo#109278] / [fdo#109279]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-512x170-onscreen.html * igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding: - shard-tglb: NOTRUN -> [SKIP][80] ([i915#3359]) +1 similar issue [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding: - shard-tglb: NOTRUN -> [SKIP][81] ([fdo#109279] / [i915#3359]) +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding.html * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: - shard-tglb: NOTRUN -> [SKIP][82] ([i915#3319]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb6/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [PASS][83] -> [FAIL][84] ([i915#72]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-iclb: NOTRUN -> [SKIP][85] ([fdo#109274] / [fdo#109278]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled: - shard-tglb: NOTRUN -> [SKIP][86] ([i915#5287]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html - shard-iclb: NOTRUN -> [SKIP][87] ([i915#5287]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-tglb: NOTRUN -> [SKIP][88] ([fdo#109274] / [fdo#111825]) +2 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html - shard-iclb: NOTRUN -> [SKIP][89] ([fdo#109274]) +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][90] -> [FAIL][91] ([i915#2122]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1: - shard-kbl: [PASS][92] -> [DMESG-WARN][93] ([i915#180]) +5 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-apl: [PASS][94] -> [DMESG-WARN][95] ([i915#180]) +1 similar issue [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl1/igt@kms_flip@flip-vs-suspend@c-dp1.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-iclb: NOTRUN -> [SKIP][96] ([fdo#109280]) +9 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-apl: NOTRUN -> [SKIP][97] ([fdo#109271]) +100 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: - shard-tglb: NOTRUN -> [SKIP][98] ([fdo#109280] / [fdo#111825]) +11 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d: - shard-apl: NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#533]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html - shard-glk: NOTRUN -> [SKIP][100] ([fdo#109271] / [i915#533]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html * igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence: - shard-kbl: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#533]) +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-apl: NOTRUN -> [FAIL][102] ([fdo#108145] / [i915#265]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl4/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-kbl: NOTRUN -> [FAIL][103] ([fdo#108145] / [i915#265]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-glk: NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#658]) +2 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk9/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-iclb: NOTRUN -> [SKIP][105] ([fdo#109642] / [fdo#111068] / [i915#658]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-kbl: NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#658]) +2 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-apl: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#658]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglb: NOTRUN -> [SKIP][108] ([i915#1911]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb5/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: [PASS][109] -> [SKIP][110] ([fdo#109441]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr@psr2_no_drrs.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb7/igt@kms_psr@psr2_no_drrs.html * igt@nouveau_crc@pipe-b-source-outp-inactive: - shard-tglb: NOTRUN -> [SKIP][111] ([i915#2530]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@nouveau_crc@pipe-b-source-outp-inactive.html - shard-iclb: NOTRUN -> [SKIP][112] ([i915#2530]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@nouveau_crc@pipe-b-source-outp-inactive.html * igt@prime_nv_api@i915_self_import: - shard-tglb: NOTRUN -> [SKIP][113] ([fdo#109291]) +1 similar issue [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb3/igt@prime_nv_api@i915_self_import.html - shard-iclb: NOTRUN -> [SKIP][114] ([fdo#109291]) +1 similar issue [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@prime_nv_api@i915_self_import.html * igt@prime_nv_pcopy@test3_5: - shard-snb: NOTRUN -> [SKIP][115] ([fdo#109271]) +193 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb6/igt@prime_nv_pcopy@test3_5.html * igt@sw_sync@sync_merge: - shard-apl: NOTRUN -> [FAIL][116] ([i915#6140]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sw_sync@sync_merge.html * igt@sysfs_clients@create: - shard-kbl: NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#2994]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@sysfs_clients@create.html * igt@sysfs_clients@recycle-many: - shard-apl: NOTRUN -> [SKIP][118] ([fdo#109271] / [i915#2994]) +1 similar issue [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@sysfs_clients@recycle-many.html * igt@sysfs_clients@split-50: - shard-tglb: NOTRUN -> [SKIP][119] ([i915#2994]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@sysfs_clients@split-50.html - shard-glk: NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#2994]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk8/igt@sysfs_clients@split-50.html - shard-iclb: NOTRUN -> [SKIP][121] ([i915#2994]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@sysfs_clients@split-50.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - {shard-tglu}: [FAIL][122] ([i915#6268]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglu-1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@legacy-engines-hang@blt: - {shard-rkl}: [SKIP][124] ([i915#6252]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-4/igt@gem_ctx_persistence@legacy-engines-hang@blt.html * igt@gem_ctx_persistence@legacy-engines-hostile@bsd1: - {shard-dg1}: [FAIL][126] ([i915#4883]) -> [PASS][127] +1 similar issue [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-18/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-16/igt@gem_ctx_persistence@legacy-engines-hostile@bsd1.html * igt@gem_eio@kms: - shard-tglb: [FAIL][128] ([i915#5784]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb1/igt@gem_eio@kms.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb7/igt@gem_eio@kms.html * igt@gem_exec_balancer@parallel-balancer: - shard-iclb: [SKIP][130] ([i915#4525]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb6/igt@gem_exec_balancer@parallel-balancer.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_fair@basic-none@vcs1: - shard-kbl: [FAIL][132] ([i915#2842]) -> [PASS][133] +2 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@gem_exec_fair@basic-none@vcs1.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - {shard-rkl}: [SKIP][134] ([fdo#109313]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_reloc@basic-write-read-noreloc: - {shard-rkl}: [SKIP][136] ([i915#3281]) -> [PASS][137] +4 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_whisper@basic-contexts-priority-all: - shard-glk: [DMESG-WARN][138] ([i915#118]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk6/igt@gem_exec_whisper@basic-contexts-priority-all.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk5/igt@gem_exec_whisper@basic-contexts-priority-all.html * igt@gem_partial_pwrite_pread@writes-after-reads: - {shard-rkl}: [SKIP][140] ([i915#3282]) -> [PASS][141] +2 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [DMESG-WARN][142] ([i915#5566] / [i915#716]) -> [PASS][143] [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk1/igt@gen9_exec_parse@allowed-single.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk7/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-chained: - {shard-rkl}: [SKIP][144] ([i915#2527]) -> [PASS][145] +1 similar issue [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][146] ([i915#454]) -> [PASS][147] [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@i915_pm_dc@dc6-psr.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb5/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rpm@dpms-non-lpsp: - {shard-dg1}: [SKIP][148] ([i915#1397]) -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-dg1-16/igt@i915_pm_rpm@dpms-non-lpsp.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-dg1-18/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-kbl: [INCOMPLETE][150] ([i915#4939]) -> [PASS][151] [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_selftest@live@hangcheck: - shard-snb: [INCOMPLETE][152] ([i915#3921]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-snb4/igt@i915_selftest@live@hangcheck.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-snb2/igt@i915_selftest@live@hangcheck.html * igt@i915_suspend@fence-restore-untiled: - shard-kbl: [DMESG-WARN][154] ([i915#180]) -> [PASS][155] +1 similar issue [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@i915_suspend@fence-restore-untiled.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl6/igt@i915_suspend@fence-restore-untiled.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-tglb: [FAIL][156] ([i915#3743]) -> [PASS][157] +3 similar issues [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_color@pipe-a-ctm-red-to-blue: - {shard-rkl}: [SKIP][158] ([i915#1149] / [i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_color@pipe-a-ctm-red-to-blue.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_color@pipe-a-ctm-red-to-blue.html * igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen: - {shard-rkl}: [SKIP][160] ([fdo#112022] / [i915#4070]) -> [PASS][161] +1 similar issue [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html * igt@kms_cursor_legacy@cursora-vs-flipa-varying-size: - {shard-rkl}: [SKIP][162] ([fdo#111825] / [i915#4070]) -> [PASS][163] +1 similar issue [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled: - {shard-rkl}: [SKIP][164] ([fdo#111314] / [i915#4098] / [i915#4369]) -> [PASS][165] +2 similar issues [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: - {shard-rkl}: [SKIP][166] ([i915#1849] / [i915#4098]) -> [PASS][167] +1 similar issue [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - shard-apl: [DMESG-WARN][168] ([i915#180]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: - {shard-rkl}: [SKIP][170] ([i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-2/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1: - shard-iclb: [SKIP][172] ([i915#5176]) -> [PASS][173] +2 similar issues [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-iclb: [SKIP][174] ([fdo#109441]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_cpu.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_psr@suspend: - {shard-rkl}: [SKIP][176] ([i915#1072]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_psr@suspend.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_psr@suspend.html * igt@kms_vblank@pipe-a-accuracy-idle: - shard-glk: [FAIL][178] ([i915#43]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-glk2/igt@kms_vblank@pipe-a-accuracy-idle.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-glk6/igt@kms_vblank@pipe-a-accuracy-idle.html * igt@kms_vblank@pipe-b-query-forked: - {shard-rkl}: [SKIP][180] ([i915#1845] / [i915#4098]) -> [PASS][181] +4 similar issues [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-rkl-1/igt@kms_vblank@pipe-b-query-forked.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-rkl-6/igt@kms_vblank@pipe-b-query-forked.html #### Warnings #### * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-iclb: [FAIL][182] ([i915#2842]) -> [FAIL][183] ([i915#2852]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb3/igt@gem_exec_fair@basic-none-rrul@rcs0.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb8/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-tglb: [SKIP][184] ([i915#2848]) -> [FAIL][185] ([i915#2842]) +4 similar issues [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb2/igt@gem_exec_fair@basic-none@vcs0.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb1/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [FAIL][186] ([i915#2842]) -> [SKIP][187] ([i915#2848]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-iclb: [SKIP][188] ([i915#658]) -> [SKIP][189] ([i915#588]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-iclb: [SKIP][190] ([i915#2920]) -> [SKIP][191] ([i915#658]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-iclb: [SKIP][192] ([i915#2920]) -> [SKIP][193] ([fdo#111068] / [i915#658]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-iclb: [SKIP][194] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [FAIL][195] ([i915#5939]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-iclb4/igt@kms_psr2_su@page_flip-p010.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-iclb2/igt@kms_psr2_su@page_flip-p010.html * igt@runner@aborted: - shard-apl: ([FAIL][196], [FAIL][197], [FAIL][198]) ([fdo#109271] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][199], [FAIL][200], [FAIL][201], [FAIL][202]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl2/igt@runner@aborted.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-apl3/igt@runner@aborted.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl6/igt@runner@aborted.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl7/igt@runner@aborted.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl3/igt@runner@aborted.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-apl8/igt@runner@aborted.html - shard-kbl: ([FAIL][203], [FAIL][204], [FAIL][205], [FAIL][206], [FAIL][207]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][208], [FAIL][209], [FAIL][210], [FAIL][211], [FAIL][212], [FAIL][213]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl3/igt@runner@aborted.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl7/igt@runner@aborted.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11788/shard-kbl1/igt@runner@aborted.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl1/igt@runner@aborted.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl7/igt@runner@aborted.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/shard-kbl4/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109290]: https://bugs.freedesktop.org/show_bug.cgi?id=109290 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109292]: https://bugs.freedesktop.org/show_bug.cgi?id=109292 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314 [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#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112022]: https://bugs.freedesktop.org/show_bug.cgi?id=112022 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911 [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2848]: https://gitlab.freedesktop.org/drm/intel/issues/2848 [i915#2852]: https://gitlab.freedesktop.org/drm/intel/issues/2852 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3376]: https://gitlab.freedesktop.org/drm/intel/issues/3376 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3614]: https://gitlab.freedesktop.org/drm/intel/issues/3614 [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#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810 [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278 [i915#43]: https://gitlab.freedesktop.org/drm/intel/issues/43 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4778]: https://gitlab.freedesktop.org/drm/intel/issues/4778 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4842]: https://gitlab.freedesktop.org/drm/intel/issues/4842 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4883]: https://gitlab.freedesktop.org/drm/intel/issues/4883 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893 [i915#4904]: https://gitlab.freedesktop.org/drm/intel/issues/4904 [i915#4939]: https://gitlab.freedesktop.org/drm/intel/issues/4939 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5174]: https://gitlab.freedesktop.org/drm/intel/issues/5174 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588 [i915#5939]: https://gitlab.freedesktop.org/drm/intel/issues/5939 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6140]: https://gitlab.freedesktop.org/drm/intel/issues/6140 [i915#6141]: https://gitlab.freedesktop.org/drm/intel/issues/6141 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6283]: https://gitlab.freedesktop.org/drm/intel/issues/6283 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6537 -> IGTPW_7354 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_11788: ec6f2ba27fe4ed0f5f6aca3977f62793b65bb1b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7354: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html IGT_6537: 331658a8475c8b0c0f7ffe5268a7318ef83da34e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7354/index.html [-- Attachment #2: Type: text/html, Size: 64662 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2022-06-27 14:16 UTC | newest] Thread overview: 19+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-06-21 13:45 [igt-dev] [PATCH i-g-t v2 0/2] Extend i915_pm_rc6_residency Riana Tauro 2022-06-21 13:45 ` [igt-dev] [PATCH i-g-t v2 1/2] tests/i915/pm_rc6_residency: Refactoring intel_ctx_t to igt_fixture Riana Tauro 2022-06-21 14:10 ` Gupta, Anshuman 2022-06-21 13:45 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/i915/pm_rc6_residency: Extend rc6-idle test on remaining engines Riana Tauro 2022-06-21 15:14 ` Gupta, Anshuman 2022-06-21 14:31 ` [igt-dev] ✗ Fi.CI.BAT: failure for Extend i915_pm_rc6_residency (rev2) Patchwork 2022-06-21 15:33 ` Tauro, Riana 2022-06-21 16:15 ` Vudum, Lakshminarayana 2022-06-21 16:07 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2022-06-22 3:03 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-06-22 5:03 ` Tauro, Riana 2022-06-23 5:23 ` Vudum, Lakshminarayana 2022-06-23 5:25 ` Tauro, Riana 2022-06-23 13:24 ` Tauro, Riana 2022-06-23 14:18 ` Vudum, Lakshminarayana 2022-06-27 5:43 ` Sarvela, Tomi P 2022-06-27 7:13 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 2022-06-27 8:18 ` Patchwork 2022-06-27 14:16 ` Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox