* [igt-dev] [PATCH i-g-t] tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture
@ 2020-04-02 12:29 Imre Deak
2020-04-02 17:04 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (8 more replies)
0 siblings, 9 replies; 15+ messages in thread
From: Imre Deak @ 2020-04-02 12:29 UTC (permalink / raw)
To: igt-dev
On platforms w/o an aperture subtests using fences are not relevant, so
skip them. This also fixes a use-after-free error happening as a
side-effect of running the test on such platforms.
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
tests/kms_flip.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/tests/kms_flip.c b/tests/kms_flip.c
index 9ce83c53d..506c9c142 100755
--- a/tests/kms_flip.c
+++ b/tests/kms_flip.c
@@ -216,6 +216,7 @@ static void emit_fence_stress(struct test_output *o)
igt_require(bufmgr);
+ igt_assert(num_fences);
bo = calloc(sizeof(*bo), num_fences);
exec = calloc(sizeof(*exec), num_fences+1);
for (i = 0; i < num_fences - 1; i++) {
@@ -1234,8 +1235,10 @@ static void run_test_on_crtc_set(struct test_output *o, int *crtc_idxs,
o->fb_width *= 2;
tiling = LOCAL_DRM_FORMAT_MOD_NONE;
- if (o->flags & TEST_FENCE_STRESS)
+ if (o->flags & TEST_FENCE_STRESS) {
+ igt_require(gem_available_fences(drm_fd));
tiling = LOCAL_I915_FORMAT_MOD_X_TILED;
+ }
/* 256 MB is usually the maximum mappable aperture,
* (make it 4x times that to ensure failure) */
--
2.23.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 15+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture 2020-04-02 12:29 [igt-dev] [PATCH i-g-t] tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture Imre Deak @ 2020-04-02 17:04 ` Patchwork 2020-04-02 20:21 ` [igt-dev] [PATCH i-g-t] " Souza, Jose ` (7 subsequent siblings) 8 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2020-04-02 17:04 UTC (permalink / raw) To: Imre Deak; +Cc: igt-dev == Series Details == Series: tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture URL : https://patchwork.freedesktop.org/series/75416/ State : success == Summary == CI Bug Log - changes from IGT_5559 -> IGTPW_4398 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/index.html Known issues ------------ Here are the changes found in IGTPW_4398 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_selftest@live@execlists: - fi-cfl-8109u: [INCOMPLETE][1] ([i915#656]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/fi-cfl-8109u/igt@i915_selftest@live@execlists.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/fi-cfl-8109u/igt@i915_selftest@live@execlists.html - fi-bxt-dsi: [INCOMPLETE][3] ([i915#656]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/fi-bxt-dsi/igt@i915_selftest@live@execlists.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/fi-bxt-dsi/igt@i915_selftest@live@execlists.html * igt@kms_flip@basic-flip-vs-wf_vblank: - fi-bsw-n3050: [FAIL][5] ([i915#34]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/fi-bsw-n3050/igt@kms_flip@basic-flip-vs-wf_vblank.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/fi-bsw-n3050/igt@kms_flip@basic-flip-vs-wf_vblank.html [i915#34]: https://gitlab.freedesktop.org/drm/intel/issues/34 [i915#656]: https://gitlab.freedesktop.org/drm/intel/issues/656 Participating hosts (48 -> 44) ------------------------------ Additional (1): fi-kbl-7560u Missing (5): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-byt-clapper Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5559 -> IGTPW_4398 CI-20190529: 20190529 CI_DRM_8238: 840f70602a47208a2f1e444ba276f412f10e38df @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4398: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/index.html IGT_5559: d213e0c268e4bf2b619197b6125730b1affbf8d4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture 2020-04-02 12:29 [igt-dev] [PATCH i-g-t] tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture Imre Deak 2020-04-02 17:04 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2020-04-02 20:21 ` Souza, Jose 2020-04-03 12:34 ` Imre Deak 2020-04-03 12:42 ` [igt-dev] [PATCH v2] " Imre Deak ` (6 subsequent siblings) 8 siblings, 1 reply; 15+ messages in thread From: Souza, Jose @ 2020-04-02 20:21 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Deak, Imre On Thu, 2020-04-02 at 15:29 +0300, Imre Deak wrote: > On platforms w/o an aperture subtests using fences are not relevant, > so > skip them. This also fixes a use-after-free error happening as a > side-effect of running the test on such platforms. > > Signed-off-by: Imre Deak <imre.deak@intel.com> > --- > tests/kms_flip.c | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/tests/kms_flip.c b/tests/kms_flip.c > index 9ce83c53d..506c9c142 100755 > --- a/tests/kms_flip.c > +++ b/tests/kms_flip.c > @@ -216,6 +216,7 @@ static void emit_fence_stress(struct test_output > *o) > > igt_require(bufmgr); > > + igt_assert(num_fences); > bo = calloc(sizeof(*bo), num_fences); > exec = calloc(sizeof(*exec), num_fences+1); > for (i = 0; i < num_fences - 1; i++) { > @@ -1234,8 +1235,10 @@ static void run_test_on_crtc_set(struct > test_output *o, int *crtc_idxs, > o->fb_width *= 2; > > tiling = LOCAL_DRM_FORMAT_MOD_NONE; > - if (o->flags & TEST_FENCE_STRESS) > + if (o->flags & TEST_FENCE_STRESS) { > + igt_require(gem_available_fences(drm_fd)); Would be better to skip on the begining of run_test() so less CI time is wasted in those tests, right after: igt_require((flags & TEST_HANG) == 0 || !is_wedged(drm_fd)); > tiling = LOCAL_I915_FORMAT_MOD_X_TILED; > + } > > /* 256 MB is usually the maximum mappable aperture, > * (make it 4x times that to ensure failure) */ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture 2020-04-02 20:21 ` [igt-dev] [PATCH i-g-t] " Souza, Jose @ 2020-04-03 12:34 ` Imre Deak 0 siblings, 0 replies; 15+ messages in thread From: Imre Deak @ 2020-04-03 12:34 UTC (permalink / raw) To: Souza, Jose; +Cc: igt-dev@lists.freedesktop.org On Thu, Apr 02, 2020 at 11:21:08PM +0300, Souza, Jose wrote: > On Thu, 2020-04-02 at 15:29 +0300, Imre Deak wrote: > > On platforms w/o an aperture subtests using fences are not relevant, > > so > > skip them. This also fixes a use-after-free error happening as a > > side-effect of running the test on such platforms. > > > > Signed-off-by: Imre Deak <imre.deak@intel.com> > > --- > > tests/kms_flip.c | 5 ++++- > > 1 file changed, 4 insertions(+), 1 deletion(-) > > > > diff --git a/tests/kms_flip.c b/tests/kms_flip.c > > index 9ce83c53d..506c9c142 100755 > > --- a/tests/kms_flip.c > > +++ b/tests/kms_flip.c > > @@ -216,6 +216,7 @@ static void emit_fence_stress(struct test_output > > *o) > > > > igt_require(bufmgr); > > > > + igt_assert(num_fences); > > bo = calloc(sizeof(*bo), num_fences); > > exec = calloc(sizeof(*exec), num_fences+1); > > for (i = 0; i < num_fences - 1; i++) { > > @@ -1234,8 +1235,10 @@ static void run_test_on_crtc_set(struct > > test_output *o, int *crtc_idxs, > > o->fb_width *= 2; > > > > tiling = LOCAL_DRM_FORMAT_MOD_NONE; > > - if (o->flags & TEST_FENCE_STRESS) > > + if (o->flags & TEST_FENCE_STRESS) { > > + igt_require(gem_available_fences(drm_fd)); > > Would be better to skip on the begining of run_test() so less CI time > is wasted in those tests, right after: > igt_require((flags & TEST_HANG) == 0 || !is_wedged(drm_fd)); run_pair() needs the same test then, but ok I can move the check earlier. > > > tiling = LOCAL_I915_FORMAT_MOD_X_TILED; > > + } > > > > /* 256 MB is usually the maximum mappable aperture, > > * (make it 4x times that to ensure failure) */ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] [PATCH v2] tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture 2020-04-02 12:29 [igt-dev] [PATCH i-g-t] tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture Imre Deak 2020-04-02 17:04 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2020-04-02 20:21 ` [igt-dev] [PATCH i-g-t] " Souza, Jose @ 2020-04-03 12:42 ` Imre Deak 2020-04-03 14:26 ` [igt-dev] [PATCH v3] " Imre Deak 2020-04-03 13:25 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork ` (5 subsequent siblings) 8 siblings, 1 reply; 15+ messages in thread From: Imre Deak @ 2020-04-03 12:42 UTC (permalink / raw) To: igt-dev On platforms w/o an aperture subtests using fences are not relevant, so skip them. This also fixes a use-after-free error happening as a side-effect of running the test on such platforms. v2: Call igt_require() earlier to speed up runtime. (José) Cc: José Roberto de Souza <jose.souza@intel.com> Signed-off-by: Imre Deak <imre.deak@intel.com> --- tests/kms_flip.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/kms_flip.c b/tests/kms_flip.c index 9ce83c53d..254fef3ae 100755 --- a/tests/kms_flip.c +++ b/tests/kms_flip.c @@ -216,6 +216,7 @@ static void emit_fence_stress(struct test_output *o) igt_require(bufmgr); + igt_assert(num_fences); bo = calloc(sizeof(*bo), num_fences); exec = calloc(sizeof(*exec), num_fences+1); for (i = 0; i < num_fences - 1; i++) { @@ -1339,6 +1340,8 @@ static int run_test(int duration, int flags) int i, n, modes = 0; igt_require((flags & TEST_HANG) == 0 || !is_wedged(drm_fd)); + igt_require((flags & TEST_FENCE_STRESS) && + gem_available_fences(drm_fd)); resources = drmModeGetResources(drm_fd); igt_require(resources); @@ -1396,6 +1399,8 @@ static int run_pair(int duration, int flags) int i, j, m, n, modes = 0; igt_require((flags & TEST_HANG) == 0 || !is_wedged(drm_fd)); + igt_require((flags & TEST_FENCE_STRESS) && + gem_available_fences(drm_fd)); resources = drmModeGetResources(drm_fd); igt_require(resources); -- 2.23.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 15+ messages in thread
* [igt-dev] [PATCH v3] tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture 2020-04-03 12:42 ` [igt-dev] [PATCH v2] " Imre Deak @ 2020-04-03 14:26 ` Imre Deak 2020-04-03 17:50 ` Souza, Jose 0 siblings, 1 reply; 15+ messages in thread From: Imre Deak @ 2020-04-03 14:26 UTC (permalink / raw) To: igt-dev On platforms w/o an aperture subtests using fences are not relevant, so skip them. This also fixes a use-after-free error happening as a side-effect of running the test on such platforms. v2: Call igt_require() earlier to speed up runtime. (José) v3: Fix the condition in igt_require(). Cc: José Roberto de Souza <jose.souza@intel.com> Signed-off-by: Imre Deak <imre.deak@intel.com> --- tests/kms_flip.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/kms_flip.c b/tests/kms_flip.c index 9ce83c53d..77efb1d28 100755 --- a/tests/kms_flip.c +++ b/tests/kms_flip.c @@ -216,6 +216,7 @@ static void emit_fence_stress(struct test_output *o) igt_require(bufmgr); + igt_assert(num_fences); bo = calloc(sizeof(*bo), num_fences); exec = calloc(sizeof(*exec), num_fences+1); for (i = 0; i < num_fences - 1; i++) { @@ -1339,6 +1340,8 @@ static int run_test(int duration, int flags) int i, n, modes = 0; igt_require((flags & TEST_HANG) == 0 || !is_wedged(drm_fd)); + igt_require(!(flags & TEST_FENCE_STRESS) || + gem_available_fences(drm_fd)); resources = drmModeGetResources(drm_fd); igt_require(resources); @@ -1396,6 +1399,8 @@ static int run_pair(int duration, int flags) int i, j, m, n, modes = 0; igt_require((flags & TEST_HANG) == 0 || !is_wedged(drm_fd)); + igt_require(!(flags & TEST_FENCE_STRESS) || + gem_available_fences(drm_fd)); resources = drmModeGetResources(drm_fd); igt_require(resources); -- 2.23.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [igt-dev] [PATCH v3] tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture 2020-04-03 14:26 ` [igt-dev] [PATCH v3] " Imre Deak @ 2020-04-03 17:50 ` Souza, Jose 0 siblings, 0 replies; 15+ messages in thread From: Souza, Jose @ 2020-04-03 17:50 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Deak, Imre On Fri, 2020-04-03 at 17:26 +0300, Imre Deak wrote: > On platforms w/o an aperture subtests using fences are not relevant, > so > skip them. This also fixes a use-after-free error happening as a > side-effect of running the test on such platforms. > > v2: Call igt_require() earlier to speed up runtime. (José) > v3: Fix the condition in igt_require(). > Reviewed-by: José Roberto de Souza <jose.souza@intel.com> > Cc: José Roberto de Souza <jose.souza@intel.com> > Signed-off-by: Imre Deak <imre.deak@intel.com> > --- > tests/kms_flip.c | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/tests/kms_flip.c b/tests/kms_flip.c > index 9ce83c53d..77efb1d28 100755 > --- a/tests/kms_flip.c > +++ b/tests/kms_flip.c > @@ -216,6 +216,7 @@ static void emit_fence_stress(struct test_output > *o) > > igt_require(bufmgr); > > + igt_assert(num_fences); > bo = calloc(sizeof(*bo), num_fences); > exec = calloc(sizeof(*exec), num_fences+1); > for (i = 0; i < num_fences - 1; i++) { > @@ -1339,6 +1340,8 @@ static int run_test(int duration, int flags) > int i, n, modes = 0; > > igt_require((flags & TEST_HANG) == 0 || !is_wedged(drm_fd)); > + igt_require(!(flags & TEST_FENCE_STRESS) || > + gem_available_fences(drm_fd)); > > resources = drmModeGetResources(drm_fd); > igt_require(resources); > @@ -1396,6 +1399,8 @@ static int run_pair(int duration, int flags) > int i, j, m, n, modes = 0; > > igt_require((flags & TEST_HANG) == 0 || !is_wedged(drm_fd)); > + igt_require(!(flags & TEST_FENCE_STRESS) || > + gem_available_fences(drm_fd)); > > resources = drmModeGetResources(drm_fd); > igt_require(resources); _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture 2020-04-02 12:29 [igt-dev] [PATCH i-g-t] tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture Imre Deak ` (2 preceding siblings ...) 2020-04-03 12:42 ` [igt-dev] [PATCH v2] " Imre Deak @ 2020-04-03 13:25 ` Patchwork 2020-04-03 13:51 ` Imre Deak 2020-04-03 14:15 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture (rev2) Patchwork ` (4 subsequent siblings) 8 siblings, 1 reply; 15+ messages in thread From: Patchwork @ 2020-04-03 13:25 UTC (permalink / raw) To: Imre Deak; +Cc: igt-dev == Series Details == Series: tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture URL : https://patchwork.freedesktop.org/series/75416/ State : failure == Summary == CI Bug Log - changes from IGT_5559_full -> IGTPW_4398_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_4398_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_4398_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_4398/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4398_full: ### IGT changes ### #### Possible regressions #### * igt@gem_ppgtt@blt-vs-render-ctx0: - shard-apl: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl3/igt@gem_ppgtt@blt-vs-render-ctx0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl2/igt@gem_ppgtt@blt-vs-render-ctx0.html * igt@gem_tiled_swapping@non-threaded: - shard-hsw: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-hsw6/igt@gem_tiled_swapping@non-threaded.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-hsw6/igt@gem_tiled_swapping@non-threaded.html - shard-snb: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-snb6/igt@gem_tiled_swapping@non-threaded.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-snb4/igt@gem_tiled_swapping@non-threaded.html New tests --------- New tests have been introduced between IGT_5559_full and IGTPW_4398_full: ### New IGT tests (1) ### * igt@gem_cs_tlb@engines: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_4398_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_balancer@smoke: - shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#110854]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb1/igt@gem_exec_balancer@smoke.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb5/igt@gem_exec_balancer@smoke.html * igt@i915_pm_rpm@gem-idle: - shard-iclb: [PASS][9] -> [SKIP][10] ([i915#1316]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb8/igt@i915_pm_rpm@gem-idle.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb2/igt@i915_pm_rpm@gem-idle.html - shard-glk: [PASS][11] -> [SKIP][12] ([fdo#109271]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-glk9/igt@i915_pm_rpm@gem-idle.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-glk7/igt@i915_pm_rpm@gem-idle.html - shard-tglb: [PASS][13] -> [SKIP][14] ([i915#1316] / [i915#579]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-tglb5/igt@i915_pm_rpm@gem-idle.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-tglb8/igt@i915_pm_rpm@gem-idle.html * igt@i915_pm_rpm@pm-tiling: - shard-hsw: [PASS][15] -> [SKIP][16] ([fdo#109271]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-hsw4/igt@i915_pm_rpm@pm-tiling.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-hsw4/igt@i915_pm_rpm@pm-tiling.html * igt@kms_cursor_crc@pipe-a-cursor-128x128-random: - shard-kbl: [PASS][17] -> [FAIL][18] ([i915#54] / [i915#93] / [i915#95]) +5 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-128x128-random.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-128x128-random.html * igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen: - shard-apl: [PASS][19] -> [FAIL][20] ([i915#54] / [i915#95]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl3/igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl4/igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen.html * igt@kms_cursor_edge_walk@pipe-a-256x256-top-edge: - shard-kbl: [PASS][21] -> [FAIL][22] ([i915#70] / [i915#93] / [i915#95]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl4/igt@kms_cursor_edge_walk@pipe-a-256x256-top-edge.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl3/igt@kms_cursor_edge_walk@pipe-a-256x256-top-edge.html * igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge: - shard-hsw: [PASS][23] -> [INCOMPLETE][24] ([i915#61]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-hsw4/igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-hsw4/igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge.html * igt@kms_draw_crc@draw-method-rgb565-mmap-wc-untiled: - shard-glk: [PASS][25] -> [FAIL][26] ([i915#52] / [i915#54]) +3 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-glk5/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-untiled.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-untiled.html * igt@kms_draw_crc@draw-method-xrgb8888-blt-ytiled: - shard-apl: [PASS][27] -> [FAIL][28] ([i915#52] / [i915#54] / [i915#95]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl2/igt@kms_draw_crc@draw-method-xrgb8888-blt-ytiled.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl7/igt@kms_draw_crc@draw-method-xrgb8888-blt-ytiled.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-glk: [PASS][29] -> [FAIL][30] ([i915#34]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-glk1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_pipe_crc_basic@hang-read-crc-pipe-a: - shard-kbl: [PASS][31] -> [FAIL][32] ([i915#53] / [i915#93] / [i915#95]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl2/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl4/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html * igt@kms_pipe_crc_basic@read-crc-pipe-a: - shard-apl: [PASS][33] -> [FAIL][34] ([i915#53] / [i915#95]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl7/igt@kms_pipe_crc_basic@read-crc-pipe-a.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl4/igt@kms_pipe_crc_basic@read-crc-pipe-a.html * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min: - shard-kbl: [PASS][35] -> [FAIL][36] ([fdo#108145] / [i915#265] / [i915#93] / [i915#95]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl1/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl7/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html * igt@kms_plane_cursor@pipe-a-viewport-size-128: - shard-apl: [PASS][37] -> [FAIL][38] ([i915#1559] / [i915#95]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl6/igt@kms_plane_cursor@pipe-a-viewport-size-128.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl4/igt@kms_plane_cursor@pipe-a-viewport-size-128.html - shard-kbl: [PASS][39] -> [FAIL][40] ([i915#1559] / [i915#93] / [i915#95]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl3/igt@kms_plane_cursor@pipe-a-viewport-size-128.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl1/igt@kms_plane_cursor@pipe-a-viewport-size-128.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [PASS][41] -> [SKIP][42] ([fdo#109441]) +2 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb8/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-kbl: [PASS][43] -> [DMESG-WARN][44] ([i915#180]) +2 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm: - shard-tglb: [PASS][45] -> [SKIP][46] ([fdo#112015]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-tglb3/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-tglb8/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html * igt@prime_busy@hang-bsd2: - shard-iclb: [PASS][47] -> [SKIP][48] ([fdo#109276]) +4 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb2/igt@prime_busy@hang-bsd2.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb8/igt@prime_busy@hang-bsd2.html #### Possible fixes #### * igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox: - shard-apl: [FAIL][49] ([i915#1528]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl8/igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl3/igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox.html * igt@gem_exec_suspend@basic-s3: - shard-kbl: [DMESG-WARN][51] ([i915#180]) -> [PASS][52] +6 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl4/igt@gem_exec_suspend@basic-s3.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl6/igt@gem_exec_suspend@basic-s3.html * igt@gem_mmap_gtt@hang: - shard-tglb: [FAIL][53] -> [PASS][54] +2 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-tglb7/igt@gem_mmap_gtt@hang.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-tglb5/igt@gem_mmap_gtt@hang.html * igt@gem_tiled_swapping@non-threaded: - shard-iclb: [FAIL][55] -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb2/igt@gem_tiled_swapping@non-threaded.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb1/igt@gem_tiled_swapping@non-threaded.html * igt@gen9_exec_parse@allowed-all: - shard-kbl: [DMESG-WARN][57] ([i915#716]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl4/igt@gen9_exec_parse@allowed-all.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl2/igt@gen9_exec_parse@allowed-all.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-iclb: [SKIP][59] ([i915#1316]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb4/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb2/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html - shard-tglb: [SKIP][61] ([i915#1316] / [i915#579]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-tglb1/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-tglb1/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_big_fb@linear-32bpp-rotate-0: - shard-kbl: [FAIL][63] ([i915#1119] / [i915#93] / [i915#95]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl4/igt@kms_big_fb@linear-32bpp-rotate-0.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl4/igt@kms_big_fb@linear-32bpp-rotate-0.html - shard-apl: [FAIL][65] ([i915#1119] / [i915#95]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl3/igt@kms_big_fb@linear-32bpp-rotate-0.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl4/igt@kms_big_fb@linear-32bpp-rotate-0.html * igt@kms_cursor_crc@pipe-a-cursor-256x85-offscreen: - shard-apl: [FAIL][67] ([i915#54] / [i915#95]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl3/igt@kms_cursor_crc@pipe-a-cursor-256x85-offscreen.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl7/igt@kms_cursor_crc@pipe-a-cursor-256x85-offscreen.html * igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen: - shard-kbl: [FAIL][69] ([i915#54] / [i915#93] / [i915#95]) -> [PASS][70] +2 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl3/igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen.html * igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding: - shard-apl: [FAIL][71] ([i915#54]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl8/igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl8/igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding.html - shard-kbl: [FAIL][73] ([i915#54]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding.html * igt@kms_draw_crc@draw-method-rgb565-mmap-wc-ytiled: - shard-glk: [FAIL][75] ([i915#52] / [i915#54]) -> [PASS][76] +3 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-ytiled.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-glk8/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-ytiled.html * igt@kms_fbcon_fbt@fbc: - shard-kbl: [FAIL][77] ([i915#64] / [i915#93] / [i915#95]) -> [PASS][78] [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl2/igt@kms_fbcon_fbt@fbc.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl3/igt@kms_fbcon_fbt@fbc.html - shard-apl: [FAIL][79] ([i915#1525]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl3/igt@kms_fbcon_fbt@fbc.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl8/igt@kms_fbcon_fbt@fbc.html * igt@kms_flip@2x-flip-vs-fences: - shard-hsw: [INCOMPLETE][81] ([i915#61]) -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-hsw2/igt@kms_flip@2x-flip-vs-fences.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-hsw2/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@flip-vs-suspend: - shard-apl: [DMESG-WARN][83] ([i915#180]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl8/igt@kms_flip@flip-vs-suspend.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl3/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@plain-flip-ts-check: - shard-glk: [FAIL][85] ([i915#34]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-glk2/igt@kms_flip@plain-flip-ts-check.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-glk4/igt@kms_flip@plain-flip-ts-check.html * igt@kms_flip_tiling@flip-changes-tiling: - shard-apl: [FAIL][87] ([i915#95]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl7/igt@kms_flip_tiling@flip-changes-tiling.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl2/igt@kms_flip_tiling@flip-changes-tiling.html - shard-kbl: [FAIL][89] ([i915#699] / [i915#93] / [i915#95]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl4/igt@kms_flip_tiling@flip-changes-tiling.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl7/igt@kms_flip_tiling@flip-changes-tiling.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-apl: [DMESG-WARN][91] ([i915#180] / [i915#95]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl8/igt@kms_frontbuffer_tracking@fbc-suspend.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl4/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_plane_alpha_blend@pipe-a-coverage-7efc: - shard-apl: [FAIL][93] ([fdo#108145] / [i915#265] / [i915#95]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl4/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl4/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-iclb: [SKIP][95] ([fdo#109441]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb4/igt@kms_psr@psr2_cursor_mmap_cpu.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_setmode@basic: - shard-apl: [FAIL][97] ([i915#31]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl4/igt@kms_setmode@basic.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl2/igt@kms_setmode@basic.html - shard-kbl: [FAIL][99] ([i915#31]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl2/igt@kms_setmode@basic.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl6/igt@kms_setmode@basic.html * igt@perf@low-oa-exponent-permissions: - shard-tglb: [SKIP][101] ([i915#405]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-tglb1/igt@perf@low-oa-exponent-permissions.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-tglb1/igt@perf@low-oa-exponent-permissions.html - shard-iclb: [SKIP][103] ([i915#405]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb4/igt@perf@low-oa-exponent-permissions.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb2/igt@perf@low-oa-exponent-permissions.html - shard-hsw: [SKIP][105] ([fdo#109271]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-hsw8/igt@perf@low-oa-exponent-permissions.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-hsw1/igt@perf@low-oa-exponent-permissions.html - shard-glk: [SKIP][107] ([fdo#109271]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-glk2/igt@perf@low-oa-exponent-permissions.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-glk6/igt@perf@low-oa-exponent-permissions.html * igt@prime_vgem@sync-bsd2: - shard-iclb: [SKIP][109] ([fdo#109276]) -> [PASS][110] +1 similar issue [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb5/igt@prime_vgem@sync-bsd2.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb1/igt@prime_vgem@sync-bsd2.html #### Warnings #### * igt@i915_pm_dc@dc6-psr: - shard-tglb: [SKIP][111] ([i915#468]) -> [FAIL][112] ([i915#454]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-tglb2/igt@i915_pm_dc@dc6-psr.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-tglb3/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rpm@gem-mmap-type: - shard-snb: [INCOMPLETE][113] ([i915#82]) -> [SKIP][114] ([fdo#109271]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-snb6/igt@i915_pm_rpm@gem-mmap-type.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-snb5/igt@i915_pm_rpm@gem-mmap-type.html * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb: - shard-apl: [FAIL][115] ([fdo#108145] / [i915#265]) -> [FAIL][116] ([fdo#108145] / [i915#265] / [i915#95]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl4/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html - shard-kbl: [FAIL][117] ([fdo#108145] / [i915#265]) -> [FAIL][118] ([fdo#108145] / [i915#265] / [i915#93] / [i915#95]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl4/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl1/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-apl: [FAIL][119] ([fdo#108145] / [i915#265] / [i915#95]) -> [FAIL][120] ([fdo#108145] / [i915#265]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl3/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html - shard-kbl: [FAIL][121] ([fdo#108145] / [i915#265] / [i915#93] / [i915#95]) -> [FAIL][122] ([fdo#108145] / [i915#265]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl6/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_psr2_su@page_flip: - shard-iclb: [SKIP][123] ([fdo#109642] / [fdo#111068]) -> [FAIL][124] ([i915#608]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb4/igt@kms_psr2_su@page_flip.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb2/igt@kms_psr2_su@page_flip.html * igt@runner@aborted: - shard-kbl: ([FAIL][125], [FAIL][126]) ([i915#1423] / [i915#716] / [i915#92]) -> [FAIL][127] ([i915#1423] / [i915#92]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl6/igt@runner@aborted.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl4/igt@runner@aborted.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl7/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#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#112015]: https://bugs.freedesktop.org/show_bug.cgi?id=112015 [i915#1119]: https://gitlab.freedesktop.org/drm/intel/issues/1119 [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316 [i915#1423]: https://gitlab.freedesktop.org/drm/intel/issues/1423 [i915#1525]: https://gitlab.freedesktop.org/drm/intel/issues/1525 [i915#1528]: https://gitlab.freedesktop.org/drm/intel/issues/1528 [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542 [i915#1559]: https://gitlab.freedesktop.org/drm/intel/issues/1559 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 [i915#34]: https://gitlab.freedesktop.org/drm/intel/issues/34 [i915#405]: https://gitlab.freedesktop.org/drm/intel/issues/405 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468 [i915#52]: https://gitlab.freedesktop.org/drm/intel/issues/52 [i915#53]: https://gitlab.freedesktop.org/drm/intel/issues/53 [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579 [i915#608]: https://gitlab.freedesktop.org/drm/intel/issues/608 [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61 [i915#64]: https://gitlab.freedesktop.org/drm/intel/issues/64 [i915#699]: https://gitlab.freedesktop.org/drm/intel/issues/699 [i915#70]: https://gitlab.freedesktop.org/drm/intel/issues/70 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82 [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92 [i915#93]: https://gitlab.freedesktop.org/drm/intel/issues/93 [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95 Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5559 -> IGTPW_4398 CI-20190529: 20190529 CI_DRM_8238: 840f70602a47208a2f1e444ba276f412f10e38df @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4398: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/index.html IGT_5559: d213e0c268e4bf2b619197b6125730b1affbf8d4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture 2020-04-03 13:25 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork @ 2020-04-03 13:51 ` Imre Deak 0 siblings, 0 replies; 15+ messages in thread From: Imre Deak @ 2020-04-03 13:51 UTC (permalink / raw) To: igt-dev, Lakshminarayana Vudum Hi Lakshmi, On Fri, Apr 03, 2020 at 01:25:47PM +0000, Patchwork wrote: > == Series Details == > > Series: tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture > URL : https://patchwork.freedesktop.org/series/75416/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_5559_full -> IGTPW_4398_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_4398_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_4398_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_4398/index.html > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_4398_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_ppgtt@blt-vs-render-ctx0: > - shard-apl: [PASS][1] -> [INCOMPLETE][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl3/igt@gem_ppgtt@blt-vs-render-ctx0.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl2/igt@gem_ppgtt@blt-vs-render-ctx0.html > > * igt@gem_tiled_swapping@non-threaded: > - shard-hsw: [PASS][3] -> [FAIL][4] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-hsw6/igt@gem_tiled_swapping@non-threaded.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-hsw6/igt@gem_tiled_swapping@non-threaded.html > - shard-snb: [PASS][5] -> [FAIL][6] > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-snb6/igt@gem_tiled_swapping@non-threaded.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-snb4/igt@gem_tiled_swapping@non-threaded.html The above failures are unrelated to this change, it would at most cause kms_flip to skip. > New tests > --------- > > New tests have been introduced between IGT_5559_full and IGTPW_4398_full: > > ### New IGT tests (1) ### > > * igt@gem_cs_tlb@engines: > - Statuses : > - Exec time: [None] s > > > > Known issues > ------------ > > Here are the changes found in IGTPW_4398_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@gem_exec_balancer@smoke: > - shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#110854]) > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb1/igt@gem_exec_balancer@smoke.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb5/igt@gem_exec_balancer@smoke.html > > * igt@i915_pm_rpm@gem-idle: > - shard-iclb: [PASS][9] -> [SKIP][10] ([i915#1316]) +1 similar issue > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb8/igt@i915_pm_rpm@gem-idle.html > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb2/igt@i915_pm_rpm@gem-idle.html > - shard-glk: [PASS][11] -> [SKIP][12] ([fdo#109271]) +1 similar issue > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-glk9/igt@i915_pm_rpm@gem-idle.html > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-glk7/igt@i915_pm_rpm@gem-idle.html > - shard-tglb: [PASS][13] -> [SKIP][14] ([i915#1316] / [i915#579]) +1 similar issue > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-tglb5/igt@i915_pm_rpm@gem-idle.html > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-tglb8/igt@i915_pm_rpm@gem-idle.html > > * igt@i915_pm_rpm@pm-tiling: > - shard-hsw: [PASS][15] -> [SKIP][16] ([fdo#109271]) +1 similar issue > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-hsw4/igt@i915_pm_rpm@pm-tiling.html > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-hsw4/igt@i915_pm_rpm@pm-tiling.html > > * igt@kms_cursor_crc@pipe-a-cursor-128x128-random: > - shard-kbl: [PASS][17] -> [FAIL][18] ([i915#54] / [i915#93] / [i915#95]) +5 similar issues > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-128x128-random.html > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-128x128-random.html > > * igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen: > - shard-apl: [PASS][19] -> [FAIL][20] ([i915#54] / [i915#95]) +2 similar issues > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl3/igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen.html > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl4/igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen.html > > * igt@kms_cursor_edge_walk@pipe-a-256x256-top-edge: > - shard-kbl: [PASS][21] -> [FAIL][22] ([i915#70] / [i915#93] / [i915#95]) > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl4/igt@kms_cursor_edge_walk@pipe-a-256x256-top-edge.html > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl3/igt@kms_cursor_edge_walk@pipe-a-256x256-top-edge.html > > * igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge: > - shard-hsw: [PASS][23] -> [INCOMPLETE][24] ([i915#61]) > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-hsw4/igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge.html > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-hsw4/igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge.html > > * igt@kms_draw_crc@draw-method-rgb565-mmap-wc-untiled: > - shard-glk: [PASS][25] -> [FAIL][26] ([i915#52] / [i915#54]) +3 similar issues > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-glk5/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-untiled.html > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-untiled.html > > * igt@kms_draw_crc@draw-method-xrgb8888-blt-ytiled: > - shard-apl: [PASS][27] -> [FAIL][28] ([i915#52] / [i915#54] / [i915#95]) > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl2/igt@kms_draw_crc@draw-method-xrgb8888-blt-ytiled.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl7/igt@kms_draw_crc@draw-method-xrgb8888-blt-ytiled.html > > * igt@kms_flip@2x-plain-flip-ts-check-interruptible: > - shard-glk: [PASS][29] -> [FAIL][30] ([i915#34]) > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-glk1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html > > * igt@kms_pipe_crc_basic@hang-read-crc-pipe-a: > - shard-kbl: [PASS][31] -> [FAIL][32] ([i915#53] / [i915#93] / [i915#95]) +1 similar issue > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl2/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl4/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html > > * igt@kms_pipe_crc_basic@read-crc-pipe-a: > - shard-apl: [PASS][33] -> [FAIL][34] ([i915#53] / [i915#95]) > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl7/igt@kms_pipe_crc_basic@read-crc-pipe-a.html > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl4/igt@kms_pipe_crc_basic@read-crc-pipe-a.html > > * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min: > - shard-kbl: [PASS][35] -> [FAIL][36] ([fdo#108145] / [i915#265] / [i915#93] / [i915#95]) > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl1/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl7/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html > > * igt@kms_plane_cursor@pipe-a-viewport-size-128: > - shard-apl: [PASS][37] -> [FAIL][38] ([i915#1559] / [i915#95]) > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl6/igt@kms_plane_cursor@pipe-a-viewport-size-128.html > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl4/igt@kms_plane_cursor@pipe-a-viewport-size-128.html > - shard-kbl: [PASS][39] -> [FAIL][40] ([i915#1559] / [i915#93] / [i915#95]) > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl3/igt@kms_plane_cursor@pipe-a-viewport-size-128.html > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl1/igt@kms_plane_cursor@pipe-a-viewport-size-128.html > > * igt@kms_psr@psr2_sprite_plane_move: > - shard-iclb: [PASS][41] -> [SKIP][42] ([fdo#109441]) +2 similar issues > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb8/igt@kms_psr@psr2_sprite_plane_move.html > > * igt@kms_vblank@pipe-a-ts-continuation-suspend: > - shard-kbl: [PASS][43] -> [DMESG-WARN][44] ([i915#180]) +2 similar issues > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html > > * igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm: > - shard-tglb: [PASS][45] -> [SKIP][46] ([fdo#112015]) > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-tglb3/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-tglb8/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html > > * igt@prime_busy@hang-bsd2: > - shard-iclb: [PASS][47] -> [SKIP][48] ([fdo#109276]) +4 similar issues > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb2/igt@prime_busy@hang-bsd2.html > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb8/igt@prime_busy@hang-bsd2.html > > > #### Possible fixes #### > > * igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox: > - shard-apl: [FAIL][49] ([i915#1528]) -> [PASS][50] > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl8/igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox.html > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl3/igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox.html > > * igt@gem_exec_suspend@basic-s3: > - shard-kbl: [DMESG-WARN][51] ([i915#180]) -> [PASS][52] +6 similar issues > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl4/igt@gem_exec_suspend@basic-s3.html > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl6/igt@gem_exec_suspend@basic-s3.html > > * igt@gem_mmap_gtt@hang: > - shard-tglb: [FAIL][53] -> [PASS][54] +2 similar issues > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-tglb7/igt@gem_mmap_gtt@hang.html > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-tglb5/igt@gem_mmap_gtt@hang.html > > * igt@gem_tiled_swapping@non-threaded: > - shard-iclb: [FAIL][55] -> [PASS][56] > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb2/igt@gem_tiled_swapping@non-threaded.html > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb1/igt@gem_tiled_swapping@non-threaded.html > > * igt@gen9_exec_parse@allowed-all: > - shard-kbl: [DMESG-WARN][57] ([i915#716]) -> [PASS][58] > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl4/igt@gen9_exec_parse@allowed-all.html > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl2/igt@gen9_exec_parse@allowed-all.html > > * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: > - shard-iclb: [SKIP][59] ([i915#1316]) -> [PASS][60] > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb4/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb2/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html > - shard-tglb: [SKIP][61] ([i915#1316] / [i915#579]) -> [PASS][62] > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-tglb1/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-tglb1/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html > > * igt@kms_big_fb@linear-32bpp-rotate-0: > - shard-kbl: [FAIL][63] ([i915#1119] / [i915#93] / [i915#95]) -> [PASS][64] > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl4/igt@kms_big_fb@linear-32bpp-rotate-0.html > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl4/igt@kms_big_fb@linear-32bpp-rotate-0.html > - shard-apl: [FAIL][65] ([i915#1119] / [i915#95]) -> [PASS][66] > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl3/igt@kms_big_fb@linear-32bpp-rotate-0.html > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl4/igt@kms_big_fb@linear-32bpp-rotate-0.html > > * igt@kms_cursor_crc@pipe-a-cursor-256x85-offscreen: > - shard-apl: [FAIL][67] ([i915#54] / [i915#95]) -> [PASS][68] > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl3/igt@kms_cursor_crc@pipe-a-cursor-256x85-offscreen.html > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl7/igt@kms_cursor_crc@pipe-a-cursor-256x85-offscreen.html > > * igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen: > - shard-kbl: [FAIL][69] ([i915#54] / [i915#93] / [i915#95]) -> [PASS][70] +2 similar issues > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl3/igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen.html > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen.html > > * igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding: > - shard-apl: [FAIL][71] ([i915#54]) -> [PASS][72] > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl8/igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding.html > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl8/igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding.html > - shard-kbl: [FAIL][73] ([i915#54]) -> [PASS][74] > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding.html > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding.html > > * igt@kms_draw_crc@draw-method-rgb565-mmap-wc-ytiled: > - shard-glk: [FAIL][75] ([i915#52] / [i915#54]) -> [PASS][76] +3 similar issues > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-ytiled.html > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-glk8/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-ytiled.html > > * igt@kms_fbcon_fbt@fbc: > - shard-kbl: [FAIL][77] ([i915#64] / [i915#93] / [i915#95]) -> [PASS][78] > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl2/igt@kms_fbcon_fbt@fbc.html > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl3/igt@kms_fbcon_fbt@fbc.html > - shard-apl: [FAIL][79] ([i915#1525]) -> [PASS][80] > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl3/igt@kms_fbcon_fbt@fbc.html > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl8/igt@kms_fbcon_fbt@fbc.html > > * igt@kms_flip@2x-flip-vs-fences: > - shard-hsw: [INCOMPLETE][81] ([i915#61]) -> [PASS][82] > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-hsw2/igt@kms_flip@2x-flip-vs-fences.html > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-hsw2/igt@kms_flip@2x-flip-vs-fences.html > > * igt@kms_flip@flip-vs-suspend: > - shard-apl: [DMESG-WARN][83] ([i915#180]) -> [PASS][84] > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl8/igt@kms_flip@flip-vs-suspend.html > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl3/igt@kms_flip@flip-vs-suspend.html > > * igt@kms_flip@plain-flip-ts-check: > - shard-glk: [FAIL][85] ([i915#34]) -> [PASS][86] > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-glk2/igt@kms_flip@plain-flip-ts-check.html > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-glk4/igt@kms_flip@plain-flip-ts-check.html > > * igt@kms_flip_tiling@flip-changes-tiling: > - shard-apl: [FAIL][87] ([i915#95]) -> [PASS][88] > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl7/igt@kms_flip_tiling@flip-changes-tiling.html > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl2/igt@kms_flip_tiling@flip-changes-tiling.html > - shard-kbl: [FAIL][89] ([i915#699] / [i915#93] / [i915#95]) -> [PASS][90] > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl4/igt@kms_flip_tiling@flip-changes-tiling.html > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl7/igt@kms_flip_tiling@flip-changes-tiling.html > > * igt@kms_frontbuffer_tracking@fbc-suspend: > - shard-apl: [DMESG-WARN][91] ([i915#180] / [i915#95]) -> [PASS][92] > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl8/igt@kms_frontbuffer_tracking@fbc-suspend.html > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl4/igt@kms_frontbuffer_tracking@fbc-suspend.html > > * igt@kms_plane_alpha_blend@pipe-a-coverage-7efc: > - shard-apl: [FAIL][93] ([fdo#108145] / [i915#265] / [i915#95]) -> [PASS][94] > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl4/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl4/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html > > * igt@kms_psr@psr2_cursor_mmap_cpu: > - shard-iclb: [SKIP][95] ([fdo#109441]) -> [PASS][96] > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb4/igt@kms_psr@psr2_cursor_mmap_cpu.html > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html > > * igt@kms_setmode@basic: > - shard-apl: [FAIL][97] ([i915#31]) -> [PASS][98] > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl4/igt@kms_setmode@basic.html > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl2/igt@kms_setmode@basic.html > - shard-kbl: [FAIL][99] ([i915#31]) -> [PASS][100] > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl2/igt@kms_setmode@basic.html > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl6/igt@kms_setmode@basic.html > > * igt@perf@low-oa-exponent-permissions: > - shard-tglb: [SKIP][101] ([i915#405]) -> [PASS][102] > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-tglb1/igt@perf@low-oa-exponent-permissions.html > [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-tglb1/igt@perf@low-oa-exponent-permissions.html > - shard-iclb: [SKIP][103] ([i915#405]) -> [PASS][104] > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb4/igt@perf@low-oa-exponent-permissions.html > [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb2/igt@perf@low-oa-exponent-permissions.html > - shard-hsw: [SKIP][105] ([fdo#109271]) -> [PASS][106] > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-hsw8/igt@perf@low-oa-exponent-permissions.html > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-hsw1/igt@perf@low-oa-exponent-permissions.html > - shard-glk: [SKIP][107] ([fdo#109271]) -> [PASS][108] > [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-glk2/igt@perf@low-oa-exponent-permissions.html > [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-glk6/igt@perf@low-oa-exponent-permissions.html > > * igt@prime_vgem@sync-bsd2: > - shard-iclb: [SKIP][109] ([fdo#109276]) -> [PASS][110] +1 similar issue > [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb5/igt@prime_vgem@sync-bsd2.html > [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb1/igt@prime_vgem@sync-bsd2.html > > > #### Warnings #### > > * igt@i915_pm_dc@dc6-psr: > - shard-tglb: [SKIP][111] ([i915#468]) -> [FAIL][112] ([i915#454]) > [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-tglb2/igt@i915_pm_dc@dc6-psr.html > [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-tglb3/igt@i915_pm_dc@dc6-psr.html > > * igt@i915_pm_rpm@gem-mmap-type: > - shard-snb: [INCOMPLETE][113] ([i915#82]) -> [SKIP][114] ([fdo#109271]) > [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-snb6/igt@i915_pm_rpm@gem-mmap-type.html > [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-snb5/igt@i915_pm_rpm@gem-mmap-type.html > > * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb: > - shard-apl: [FAIL][115] ([fdo#108145] / [i915#265]) -> [FAIL][116] ([fdo#108145] / [i915#265] / [i915#95]) > [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html > [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl4/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html > - shard-kbl: [FAIL][117] ([fdo#108145] / [i915#265]) -> [FAIL][118] ([fdo#108145] / [i915#265] / [i915#93] / [i915#95]) > [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl4/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html > [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl1/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html > > * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: > - shard-apl: [FAIL][119] ([fdo#108145] / [i915#265] / [i915#95]) -> [FAIL][120] ([fdo#108145] / [i915#265]) > [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html > [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-apl3/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html > - shard-kbl: [FAIL][121] ([fdo#108145] / [i915#265] / [i915#93] / [i915#95]) -> [FAIL][122] ([fdo#108145] / [i915#265]) > [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl6/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html > [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html > > * igt@kms_psr2_su@page_flip: > - shard-iclb: [SKIP][123] ([fdo#109642] / [fdo#111068]) -> [FAIL][124] ([i915#608]) > [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-iclb4/igt@kms_psr2_su@page_flip.html > [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-iclb2/igt@kms_psr2_su@page_flip.html > > * igt@runner@aborted: > - shard-kbl: ([FAIL][125], [FAIL][126]) ([i915#1423] / [i915#716] / [i915#92]) -> [FAIL][127] ([i915#1423] / [i915#92]) > [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl6/igt@runner@aborted.html > [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5559/shard-kbl4/igt@runner@aborted.html > [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/shard-kbl7/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#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 > [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 > [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 > [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 > [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 > [fdo#112015]: https://bugs.freedesktop.org/show_bug.cgi?id=112015 > [i915#1119]: https://gitlab.freedesktop.org/drm/intel/issues/1119 > [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316 > [i915#1423]: https://gitlab.freedesktop.org/drm/intel/issues/1423 > [i915#1525]: https://gitlab.freedesktop.org/drm/intel/issues/1525 > [i915#1528]: https://gitlab.freedesktop.org/drm/intel/issues/1528 > [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542 > [i915#1559]: https://gitlab.freedesktop.org/drm/intel/issues/1559 > [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 > [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 > [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 > [i915#34]: https://gitlab.freedesktop.org/drm/intel/issues/34 > [i915#405]: https://gitlab.freedesktop.org/drm/intel/issues/405 > [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 > [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468 > [i915#52]: https://gitlab.freedesktop.org/drm/intel/issues/52 > [i915#53]: https://gitlab.freedesktop.org/drm/intel/issues/53 > [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 > [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579 > [i915#608]: https://gitlab.freedesktop.org/drm/intel/issues/608 > [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61 > [i915#64]: https://gitlab.freedesktop.org/drm/intel/issues/64 > [i915#699]: https://gitlab.freedesktop.org/drm/intel/issues/699 > [i915#70]: https://gitlab.freedesktop.org/drm/intel/issues/70 > [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 > [i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82 > [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92 > [i915#93]: https://gitlab.freedesktop.org/drm/intel/issues/93 > [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95 > > > Participating hosts (8 -> 8) > ------------------------------ > > No changes in participating hosts > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_5559 -> IGTPW_4398 > > CI-20190529: 20190529 > CI_DRM_8238: 840f70602a47208a2f1e444ba276f412f10e38df @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_4398: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/index.html > IGT_5559: d213e0c268e4bf2b619197b6125730b1affbf8d4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4398/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture (rev2) 2020-04-02 12:29 [igt-dev] [PATCH i-g-t] tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture Imre Deak ` (3 preceding siblings ...) 2020-04-03 13:25 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork @ 2020-04-03 14:15 ` Patchwork 2020-04-03 14:36 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork ` (3 subsequent siblings) 8 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2020-04-03 14:15 UTC (permalink / raw) To: Imre Deak; +Cc: igt-dev == Series Details == Series: tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture (rev2) URL : https://patchwork.freedesktop.org/series/75416/ State : failure == Summary == CI Bug Log - changes from IGT_5562 -> IGTPW_4402 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_4402 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_4402, 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_4402/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4402: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@basic-flip-vs-dpms: - fi-cml-u2: [PASS][1] -> [SKIP][2] +3 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-cml-u2/igt@kms_flip@basic-flip-vs-dpms.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-cml-u2/igt@kms_flip@basic-flip-vs-dpms.html - fi-icl-dsi: [PASS][3] -> [SKIP][4] +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-icl-dsi/igt@kms_flip@basic-flip-vs-dpms.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-icl-dsi/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@basic-flip-vs-modeset: - fi-icl-y: [PASS][5] -> [SKIP][6] +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-icl-y/igt@kms_flip@basic-flip-vs-modeset.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-icl-y/igt@kms_flip@basic-flip-vs-modeset.html - fi-cml-s: [PASS][7] -> [SKIP][8] +3 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-cml-s/igt@kms_flip@basic-flip-vs-modeset.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-cml-s/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_flip@basic-plain-flip: - fi-icl-guc: [PASS][9] -> [SKIP][10] +3 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-icl-guc/igt@kms_flip@basic-plain-flip.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-icl-guc/igt@kms_flip@basic-plain-flip.html - fi-icl-u2: [PASS][11] -> [SKIP][12] +3 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-icl-u2/igt@kms_flip@basic-plain-flip.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-icl-u2/igt@kms_flip@basic-plain-flip.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@gem_wait@busy@all}: - fi-hsw-peppy: [PASS][13] -> [FAIL][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-hsw-peppy/igt@gem_wait@busy@all.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-hsw-peppy/igt@gem_wait@busy@all.html * igt@kms_flip@basic-flip-vs-dpms: - {fi-tgl-u}: [PASS][15] -> [SKIP][16] +3 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-tgl-u/igt@kms_flip@basic-flip-vs-dpms.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-tgl-u/igt@kms_flip@basic-flip-vs-dpms.html - {fi-tgl-dsi}: [PASS][17] -> [SKIP][18] +3 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-tgl-dsi/igt@kms_flip@basic-flip-vs-dpms.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-tgl-dsi/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@basic-plain-flip: - {fi-ehl-1}: [PASS][19] -> [SKIP][20] +3 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-ehl-1/igt@kms_flip@basic-plain-flip.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-ehl-1/igt@kms_flip@basic-plain-flip.html Known issues ------------ Here are the changes found in IGTPW_4402 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@execlists: - fi-glk-dsi: [PASS][21] -> [INCOMPLETE][22] ([i915#58] / [i915#656] / [k.org#198133]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-glk-dsi/igt@i915_selftest@live@execlists.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-glk-dsi/igt@i915_selftest@live@execlists.html * igt@kms_flip@basic-flip-vs-dpms: - fi-kbl-soraka: [PASS][23] -> [SKIP][24] ([fdo#109271]) +3 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-kbl-soraka/igt@kms_flip@basic-flip-vs-dpms.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-kbl-soraka/igt@kms_flip@basic-flip-vs-dpms.html - fi-ilk-650: [PASS][25] -> [SKIP][26] ([fdo#109271]) +3 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-ilk-650/igt@kms_flip@basic-flip-vs-dpms.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-ilk-650/igt@kms_flip@basic-flip-vs-dpms.html - fi-pnv-d510: [PASS][27] -> [SKIP][28] ([fdo#109271]) +3 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-pnv-d510/igt@kms_flip@basic-flip-vs-dpms.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-pnv-d510/igt@kms_flip@basic-flip-vs-dpms.html - fi-skl-6770hq: [PASS][29] -> [SKIP][30] ([fdo#109271]) +3 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-skl-6770hq/igt@kms_flip@basic-flip-vs-dpms.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-skl-6770hq/igt@kms_flip@basic-flip-vs-dpms.html - fi-cfl-guc: [PASS][31] -> [SKIP][32] ([fdo#109271]) +3 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-cfl-guc/igt@kms_flip@basic-flip-vs-dpms.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-cfl-guc/igt@kms_flip@basic-flip-vs-dpms.html - fi-hsw-4770: [PASS][33] -> [SKIP][34] ([fdo#109271]) +3 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-hsw-4770/igt@kms_flip@basic-flip-vs-dpms.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-hsw-4770/igt@kms_flip@basic-flip-vs-dpms.html - fi-bxt-dsi: [PASS][35] -> [SKIP][36] ([fdo#109271]) +3 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-bxt-dsi/igt@kms_flip@basic-flip-vs-dpms.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-bxt-dsi/igt@kms_flip@basic-flip-vs-dpms.html - fi-skl-6600u: [PASS][37] -> [SKIP][38] ([fdo#109271]) +3 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-skl-6600u/igt@kms_flip@basic-flip-vs-dpms.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-skl-6600u/igt@kms_flip@basic-flip-vs-dpms.html - fi-cfl-8700k: [PASS][39] -> [SKIP][40] ([fdo#109271]) +3 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-cfl-8700k/igt@kms_flip@basic-flip-vs-dpms.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-cfl-8700k/igt@kms_flip@basic-flip-vs-dpms.html - fi-bsw-kefka: [PASS][41] -> [SKIP][42] ([fdo#109271]) +3 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-bsw-kefka/igt@kms_flip@basic-flip-vs-dpms.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-bsw-kefka/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@basic-flip-vs-modeset: - fi-kbl-x1275: [PASS][43] -> [SKIP][44] ([fdo#109271]) +3 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-kbl-x1275/igt@kms_flip@basic-flip-vs-modeset.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-kbl-x1275/igt@kms_flip@basic-flip-vs-modeset.html - fi-byt-j1900: [PASS][45] -> [SKIP][46] ([fdo#109271]) +3 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-byt-j1900/igt@kms_flip@basic-flip-vs-modeset.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-byt-j1900/igt@kms_flip@basic-flip-vs-modeset.html - fi-ivb-3770: [PASS][47] -> [SKIP][48] ([fdo#109271]) +3 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-ivb-3770/igt@kms_flip@basic-flip-vs-modeset.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-ivb-3770/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_flip@basic-flip-vs-wf_vblank: - fi-hsw-peppy: [PASS][49] -> [SKIP][50] ([fdo#109271]) +3 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-hsw-peppy/igt@kms_flip@basic-flip-vs-wf_vblank.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-hsw-peppy/igt@kms_flip@basic-flip-vs-wf_vblank.html - fi-snb-2600: [PASS][51] -> [SKIP][52] ([fdo#109271]) +3 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-snb-2600/igt@kms_flip@basic-flip-vs-wf_vblank.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-snb-2600/igt@kms_flip@basic-flip-vs-wf_vblank.html - fi-gdg-551: [PASS][53] -> [SKIP][54] ([fdo#109271]) +3 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-gdg-551/igt@kms_flip@basic-flip-vs-wf_vblank.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-gdg-551/igt@kms_flip@basic-flip-vs-wf_vblank.html - fi-glk-dsi: [PASS][55] -> [SKIP][56] ([fdo#109271]) +3 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-glk-dsi/igt@kms_flip@basic-flip-vs-wf_vblank.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-glk-dsi/igt@kms_flip@basic-flip-vs-wf_vblank.html - fi-cfl-8109u: [PASS][57] -> [SKIP][58] ([fdo#109271]) +3 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-wf_vblank.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-wf_vblank.html - fi-kbl-r: [PASS][59] -> [SKIP][60] ([fdo#109271]) +3 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-kbl-r/igt@kms_flip@basic-flip-vs-wf_vblank.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-kbl-r/igt@kms_flip@basic-flip-vs-wf_vblank.html - fi-bwr-2160: [PASS][61] -> [SKIP][62] ([fdo#109271]) +3 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-bwr-2160/igt@kms_flip@basic-flip-vs-wf_vblank.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-bwr-2160/igt@kms_flip@basic-flip-vs-wf_vblank.html - fi-bdw-5557u: [PASS][63] -> [SKIP][64] ([fdo#109271]) +3 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-bdw-5557u/igt@kms_flip@basic-flip-vs-wf_vblank.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-bdw-5557u/igt@kms_flip@basic-flip-vs-wf_vblank.html - fi-skl-guc: [PASS][65] -> [SKIP][66] ([fdo#109271]) +3 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-skl-guc/igt@kms_flip@basic-flip-vs-wf_vblank.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-skl-guc/igt@kms_flip@basic-flip-vs-wf_vblank.html - fi-kbl-7500u: [PASS][67] -> [SKIP][68] ([fdo#109271]) +3 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-kbl-7500u/igt@kms_flip@basic-flip-vs-wf_vblank.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-kbl-7500u/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip@basic-plain-flip: - fi-skl-6700k2: [PASS][69] -> [SKIP][70] ([fdo#109271]) +3 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-skl-6700k2/igt@kms_flip@basic-plain-flip.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-skl-6700k2/igt@kms_flip@basic-plain-flip.html - fi-byt-n2820: [PASS][71] -> [SKIP][72] ([fdo#109271]) +3 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-byt-n2820/igt@kms_flip@basic-plain-flip.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-byt-n2820/igt@kms_flip@basic-plain-flip.html - fi-elk-e7500: [PASS][73] -> [SKIP][74] ([fdo#109271]) +3 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-elk-e7500/igt@kms_flip@basic-plain-flip.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-elk-e7500/igt@kms_flip@basic-plain-flip.html - fi-snb-2520m: [PASS][75] -> [SKIP][76] ([fdo#109271]) +3 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-snb-2520m/igt@kms_flip@basic-plain-flip.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-snb-2520m/igt@kms_flip@basic-plain-flip.html - fi-apl-guc: [PASS][77] -> [SKIP][78] ([fdo#109271]) +3 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-apl-guc/igt@kms_flip@basic-plain-flip.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-apl-guc/igt@kms_flip@basic-plain-flip.html - fi-skl-lmem: [PASS][79] -> [SKIP][80] ([fdo#109271]) +3 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-skl-lmem/igt@kms_flip@basic-plain-flip.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-skl-lmem/igt@kms_flip@basic-plain-flip.html #### Possible fixes #### * igt@i915_selftest@live@hangcheck: - fi-snb-2520m: [INCOMPLETE][81] -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-snb-2520m/igt@i915_selftest@live@hangcheck.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-snb-2520m/igt@i915_selftest@live@hangcheck.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 [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58 [i915#656]: https://gitlab.freedesktop.org/drm/intel/issues/656 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (50 -> 44) ------------------------------ Missing (6): fi-ilk-m540 fi-hsw-4200u fi-bsw-n3050 fi-byt-squawks fi-bsw-cyan fi-byt-clapper Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5562 -> IGTPW_4402 CI-20190529: 20190529 CI_DRM_8244: 55348aac86bd6f0c4ce4d3d8a0e227f6a20a72f9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4402: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/index.html IGT_5562: 4770480c8c1f105ff9225e8eb07b652ca954e06a @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture (rev2) 2020-04-02 12:29 [igt-dev] [PATCH i-g-t] tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture Imre Deak ` (4 preceding siblings ...) 2020-04-03 14:15 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture (rev2) Patchwork @ 2020-04-03 14:36 ` Patchwork 2020-04-03 20:54 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (2 subsequent siblings) 8 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2020-04-03 14:36 UTC (permalink / raw) To: Imre Deak; +Cc: igt-dev == Series Details == Series: tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture (rev2) URL : https://patchwork.freedesktop.org/series/75416/ State : success == Summary == CI Bug Log - changes from IGT_5562 -> IGTPW_4402 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4402: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@gem_wait@busy@all}: - fi-hsw-peppy: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-hsw-peppy/igt@gem_wait@busy@all.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-hsw-peppy/igt@gem_wait@busy@all.html * igt@kms_flip@basic-flip-vs-dpms: - {fi-tgl-u}: [PASS][3] -> [SKIP][4] +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-tgl-u/igt@kms_flip@basic-flip-vs-dpms.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-tgl-u/igt@kms_flip@basic-flip-vs-dpms.html - {fi-tgl-dsi}: [PASS][5] -> [SKIP][6] +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-tgl-dsi/igt@kms_flip@basic-flip-vs-dpms.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-tgl-dsi/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@basic-plain-flip: - {fi-ehl-1}: [PASS][7] -> [SKIP][8] +3 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-ehl-1/igt@kms_flip@basic-plain-flip.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-ehl-1/igt@kms_flip@basic-plain-flip.html Known issues ------------ Here are the changes found in IGTPW_4402 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@execlists: - fi-glk-dsi: [PASS][9] -> [INCOMPLETE][10] ([i915#58] / [i915#656] / [k.org#198133]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-glk-dsi/igt@i915_selftest@live@execlists.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-glk-dsi/igt@i915_selftest@live@execlists.html * igt@kms_flip@basic-flip-vs-dpms: - fi-kbl-soraka: [PASS][11] -> [SKIP][12] ([fdo#109271]) +3 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-kbl-soraka/igt@kms_flip@basic-flip-vs-dpms.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-kbl-soraka/igt@kms_flip@basic-flip-vs-dpms.html - fi-ilk-650: [PASS][13] -> [SKIP][14] ([fdo#109271]) +3 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-ilk-650/igt@kms_flip@basic-flip-vs-dpms.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-ilk-650/igt@kms_flip@basic-flip-vs-dpms.html - fi-pnv-d510: [PASS][15] -> [SKIP][16] ([fdo#109271]) +3 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-pnv-d510/igt@kms_flip@basic-flip-vs-dpms.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-pnv-d510/igt@kms_flip@basic-flip-vs-dpms.html - fi-skl-6770hq: [PASS][17] -> [SKIP][18] ([fdo#109271]) +3 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-skl-6770hq/igt@kms_flip@basic-flip-vs-dpms.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-skl-6770hq/igt@kms_flip@basic-flip-vs-dpms.html - fi-cfl-guc: [PASS][19] -> [SKIP][20] ([fdo#109271]) +3 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-cfl-guc/igt@kms_flip@basic-flip-vs-dpms.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-cfl-guc/igt@kms_flip@basic-flip-vs-dpms.html - fi-hsw-4770: [PASS][21] -> [SKIP][22] ([fdo#109271]) +3 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-hsw-4770/igt@kms_flip@basic-flip-vs-dpms.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-hsw-4770/igt@kms_flip@basic-flip-vs-dpms.html - fi-bxt-dsi: [PASS][23] -> [SKIP][24] ([fdo#109271]) +3 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-bxt-dsi/igt@kms_flip@basic-flip-vs-dpms.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-bxt-dsi/igt@kms_flip@basic-flip-vs-dpms.html - fi-skl-6600u: [PASS][25] -> [SKIP][26] ([fdo#109271]) +3 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-skl-6600u/igt@kms_flip@basic-flip-vs-dpms.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-skl-6600u/igt@kms_flip@basic-flip-vs-dpms.html - fi-cml-u2: [PASS][27] -> [SKIP][28] ([i915#1615]) +3 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-cml-u2/igt@kms_flip@basic-flip-vs-dpms.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-cml-u2/igt@kms_flip@basic-flip-vs-dpms.html - fi-icl-dsi: [PASS][29] -> [SKIP][30] ([i915#1615]) +3 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-icl-dsi/igt@kms_flip@basic-flip-vs-dpms.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-icl-dsi/igt@kms_flip@basic-flip-vs-dpms.html - fi-cfl-8700k: [PASS][31] -> [SKIP][32] ([fdo#109271]) +3 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-cfl-8700k/igt@kms_flip@basic-flip-vs-dpms.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-cfl-8700k/igt@kms_flip@basic-flip-vs-dpms.html - fi-bsw-kefka: [PASS][33] -> [SKIP][34] ([fdo#109271]) +3 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-bsw-kefka/igt@kms_flip@basic-flip-vs-dpms.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-bsw-kefka/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@basic-flip-vs-modeset: - fi-kbl-x1275: [PASS][35] -> [SKIP][36] ([fdo#109271]) +3 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-kbl-x1275/igt@kms_flip@basic-flip-vs-modeset.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-kbl-x1275/igt@kms_flip@basic-flip-vs-modeset.html - fi-icl-y: [PASS][37] -> [SKIP][38] ([i915#1615]) +3 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-icl-y/igt@kms_flip@basic-flip-vs-modeset.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-icl-y/igt@kms_flip@basic-flip-vs-modeset.html - fi-cml-s: [PASS][39] -> [SKIP][40] ([i915#1615]) +3 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-cml-s/igt@kms_flip@basic-flip-vs-modeset.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-cml-s/igt@kms_flip@basic-flip-vs-modeset.html - fi-byt-j1900: [PASS][41] -> [SKIP][42] ([fdo#109271]) +3 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-byt-j1900/igt@kms_flip@basic-flip-vs-modeset.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-byt-j1900/igt@kms_flip@basic-flip-vs-modeset.html - fi-ivb-3770: [PASS][43] -> [SKIP][44] ([fdo#109271]) +3 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-ivb-3770/igt@kms_flip@basic-flip-vs-modeset.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-ivb-3770/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_flip@basic-flip-vs-wf_vblank: - fi-hsw-peppy: [PASS][45] -> [SKIP][46] ([fdo#109271]) +3 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-hsw-peppy/igt@kms_flip@basic-flip-vs-wf_vblank.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-hsw-peppy/igt@kms_flip@basic-flip-vs-wf_vblank.html - fi-snb-2600: [PASS][47] -> [SKIP][48] ([fdo#109271]) +3 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-snb-2600/igt@kms_flip@basic-flip-vs-wf_vblank.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-snb-2600/igt@kms_flip@basic-flip-vs-wf_vblank.html - fi-gdg-551: [PASS][49] -> [SKIP][50] ([fdo#109271]) +3 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-gdg-551/igt@kms_flip@basic-flip-vs-wf_vblank.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-gdg-551/igt@kms_flip@basic-flip-vs-wf_vblank.html - fi-glk-dsi: [PASS][51] -> [SKIP][52] ([fdo#109271]) +3 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-glk-dsi/igt@kms_flip@basic-flip-vs-wf_vblank.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-glk-dsi/igt@kms_flip@basic-flip-vs-wf_vblank.html - fi-cfl-8109u: [PASS][53] -> [SKIP][54] ([fdo#109271]) +3 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-wf_vblank.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-wf_vblank.html - fi-kbl-r: [PASS][55] -> [SKIP][56] ([fdo#109271]) +3 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-kbl-r/igt@kms_flip@basic-flip-vs-wf_vblank.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-kbl-r/igt@kms_flip@basic-flip-vs-wf_vblank.html - fi-bwr-2160: [PASS][57] -> [SKIP][58] ([fdo#109271]) +3 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-bwr-2160/igt@kms_flip@basic-flip-vs-wf_vblank.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-bwr-2160/igt@kms_flip@basic-flip-vs-wf_vblank.html - fi-bdw-5557u: [PASS][59] -> [SKIP][60] ([fdo#109271]) +3 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-bdw-5557u/igt@kms_flip@basic-flip-vs-wf_vblank.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-bdw-5557u/igt@kms_flip@basic-flip-vs-wf_vblank.html - fi-skl-guc: [PASS][61] -> [SKIP][62] ([fdo#109271]) +3 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-skl-guc/igt@kms_flip@basic-flip-vs-wf_vblank.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-skl-guc/igt@kms_flip@basic-flip-vs-wf_vblank.html - fi-kbl-7500u: [PASS][63] -> [SKIP][64] ([fdo#109271]) +3 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-kbl-7500u/igt@kms_flip@basic-flip-vs-wf_vblank.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-kbl-7500u/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip@basic-plain-flip: - fi-skl-6700k2: [PASS][65] -> [SKIP][66] ([fdo#109271]) +3 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-skl-6700k2/igt@kms_flip@basic-plain-flip.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-skl-6700k2/igt@kms_flip@basic-plain-flip.html - fi-byt-n2820: [PASS][67] -> [SKIP][68] ([fdo#109271]) +3 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-byt-n2820/igt@kms_flip@basic-plain-flip.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-byt-n2820/igt@kms_flip@basic-plain-flip.html - fi-icl-guc: [PASS][69] -> [SKIP][70] ([i915#1615]) +3 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-icl-guc/igt@kms_flip@basic-plain-flip.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-icl-guc/igt@kms_flip@basic-plain-flip.html - fi-elk-e7500: [PASS][71] -> [SKIP][72] ([fdo#109271]) +3 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-elk-e7500/igt@kms_flip@basic-plain-flip.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-elk-e7500/igt@kms_flip@basic-plain-flip.html - fi-snb-2520m: [PASS][73] -> [SKIP][74] ([fdo#109271]) +3 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-snb-2520m/igt@kms_flip@basic-plain-flip.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-snb-2520m/igt@kms_flip@basic-plain-flip.html - fi-apl-guc: [PASS][75] -> [SKIP][76] ([fdo#109271]) +3 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-apl-guc/igt@kms_flip@basic-plain-flip.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-apl-guc/igt@kms_flip@basic-plain-flip.html - fi-skl-lmem: [PASS][77] -> [SKIP][78] ([fdo#109271]) +3 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-skl-lmem/igt@kms_flip@basic-plain-flip.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-skl-lmem/igt@kms_flip@basic-plain-flip.html - fi-icl-u2: [PASS][79] -> [SKIP][80] ([i915#1615]) +3 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-icl-u2/igt@kms_flip@basic-plain-flip.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-icl-u2/igt@kms_flip@basic-plain-flip.html #### Possible fixes #### * igt@i915_selftest@live@hangcheck: - fi-snb-2520m: [INCOMPLETE][81] -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/fi-snb-2520m/igt@i915_selftest@live@hangcheck.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/fi-snb-2520m/igt@i915_selftest@live@hangcheck.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 [i915#1615]: https://gitlab.freedesktop.org/drm/intel/issues/1615 [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58 [i915#656]: https://gitlab.freedesktop.org/drm/intel/issues/656 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (50 -> 44) ------------------------------ Missing (6): fi-ilk-m540 fi-hsw-4200u fi-bsw-n3050 fi-byt-squawks fi-bsw-cyan fi-byt-clapper Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5562 -> IGTPW_4402 CI-20190529: 20190529 CI_DRM_8244: 55348aac86bd6f0c4ce4d3d8a0e227f6a20a72f9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4402: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/index.html IGT_5562: 4770480c8c1f105ff9225e8eb07b652ca954e06a @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture (rev2) 2020-04-02 12:29 [igt-dev] [PATCH i-g-t] tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture Imre Deak ` (5 preceding siblings ...) 2020-04-03 14:36 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2020-04-03 20:54 ` Patchwork 2020-04-03 23:50 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture (rev3) Patchwork 2020-04-04 11:23 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 8 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2020-04-03 20:54 UTC (permalink / raw) To: Imre Deak; +Cc: igt-dev == Series Details == Series: tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture (rev2) URL : https://patchwork.freedesktop.org/series/75416/ State : failure == Summary == CI Bug Log - changes from IGT_5562_full -> IGTPW_4402_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_4402_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_4402_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_4402/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4402_full: ### IGT changes ### #### Possible regressions #### * igt@gem_tiled_swapping@non-threaded: - shard-iclb: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-iclb1/igt@gem_tiled_swapping@non-threaded.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-iclb1/igt@gem_tiled_swapping@non-threaded.html * igt@kms_flip@basic-flip-vs-modeset: - shard-tglb: [PASS][3] -> [SKIP][4] +41 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-tglb2/igt@kms_flip@basic-flip-vs-modeset.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-tglb1/igt@kms_flip@basic-flip-vs-modeset.html #### Warnings #### * igt@kms_flip@2x-plain-flip-ts-check: - shard-tglb: [SKIP][5] ([fdo#111825]) -> [SKIP][6] +44 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-tglb6/igt@kms_flip@2x-plain-flip-ts-check.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-tglb8/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-tglb: [FAIL][7] ([i915#488]) -> [SKIP][8] +2 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-tglb3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-tglb1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html New tests --------- New tests have been introduced between IGT_5562_full and IGTPW_4402_full: ### New IGT tests (9) ### * igt@perf_pmu@faulting-read: - Statuses : - Exec time: [None] s * igt@prime_busy@after: - Statuses : - Exec time: [None] s * igt@prime_busy@after-wait: - Statuses : - Exec time: [None] s * igt@prime_busy@before: - Statuses : - Exec time: [None] s * igt@prime_busy@hang: - Statuses : - Exec time: [None] s * igt@prime_busy@hang-wait: - Statuses : - Exec time: [None] s * igt@prime_vgem@busy: - Statuses : - Exec time: [None] s * igt@prime_vgem@fence-wait: - Statuses : - Exec time: [None] s * igt@prime_vgem@sync: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_4402_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_params@invalid-bsd-ring: - shard-iclb: [PASS][9] -> [SKIP][10] ([fdo#109276]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-iclb2/igt@gem_exec_params@invalid-bsd-ring.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-iclb5/igt@gem_exec_params@invalid-bsd-ring.html * igt@gem_exec_suspend@basic-s3: - shard-kbl: [PASS][11] -> [DMESG-WARN][12] ([i915#180] / [i915#93] / [i915#95]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-kbl1/igt@gem_exec_suspend@basic-s3.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-kbl7/igt@gem_exec_suspend@basic-s3.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-hsw: [PASS][13] -> [WARN][14] ([i915#1519]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-hsw1/igt@i915_pm_rc6_residency@rc6-idle.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-hsw4/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@cursor-dpms: - shard-tglb: [PASS][15] -> [SKIP][16] ([i915#1316] / [i915#579]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-tglb7/igt@i915_pm_rpm@cursor-dpms.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-tglb3/igt@i915_pm_rpm@cursor-dpms.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-kbl: [PASS][17] -> [INCOMPLETE][18] ([i915#151]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-kbl4/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-kbl2/igt@i915_pm_rpm@modeset-non-lpsp-stress.html - shard-apl: [PASS][19] -> [TIMEOUT][20] ([i915#1288]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-apl2/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-apl7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@system-suspend-modeset: - shard-iclb: [PASS][21] -> [SKIP][22] ([i915#1316] / [i915#579]) +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-iclb5/igt@i915_pm_rpm@system-suspend-modeset.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-iclb6/igt@i915_pm_rpm@system-suspend-modeset.html * igt@kms_big_fb@linear-32bpp-rotate-0: - shard-kbl: [PASS][23] -> [FAIL][24] ([i915#1119] / [i915#93] / [i915#95]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-kbl3/igt@kms_big_fb@linear-32bpp-rotate-0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-kbl6/igt@kms_big_fb@linear-32bpp-rotate-0.html - shard-apl: [PASS][25] -> [FAIL][26] ([i915#1119] / [i915#95]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-apl1/igt@kms_big_fb@linear-32bpp-rotate-0.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-apl2/igt@kms_big_fb@linear-32bpp-rotate-0.html * igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen: - shard-kbl: [PASS][27] -> [FAIL][28] ([i915#54] / [i915#93] / [i915#95]) +3 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html * igt@kms_cursor_crc@pipe-a-cursor-suspend: - shard-kbl: [PASS][29] -> [DMESG-WARN][30] ([i915#180]) +4 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html * igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled: - shard-glk: [PASS][31] -> [FAIL][32] ([i915#52] / [i915#54]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-glk4/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-glk9/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html * igt@kms_draw_crc@draw-method-xrgb8888-mmap-gtt-untiled: - shard-apl: [PASS][33] -> [FAIL][34] ([i915#52] / [i915#54] / [i915#95]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-apl3/igt@kms_draw_crc@draw-method-xrgb8888-mmap-gtt-untiled.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-apl8/igt@kms_draw_crc@draw-method-xrgb8888-mmap-gtt-untiled.html * igt@kms_draw_crc@draw-method-xrgb8888-render-untiled: - shard-kbl: [PASS][35] -> [FAIL][36] ([i915#177] / [i915#52] / [i915#54] / [i915#93] / [i915#95]) +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-kbl2/igt@kms_draw_crc@draw-method-xrgb8888-render-untiled.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-kbl6/igt@kms_draw_crc@draw-method-xrgb8888-render-untiled.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-hsw: [PASS][37] -> [SKIP][38] ([fdo#109271]) +91 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-hsw2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-hsw2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@bo-too-big-interruptible: - shard-snb: [PASS][39] -> [SKIP][40] ([fdo#109271]) +44 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-snb1/igt@kms_flip@bo-too-big-interruptible.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-snb1/igt@kms_flip@bo-too-big-interruptible.html * igt@kms_flip@dpms-off-confusion: - shard-iclb: [PASS][41] -> [SKIP][42] ([i915#1615]) +44 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-iclb3/igt@kms_flip@dpms-off-confusion.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-iclb3/igt@kms_flip@dpms-off-confusion.html * igt@kms_flip@dpms-off-confusion-interruptible: - shard-glk: [PASS][43] -> [SKIP][44] ([fdo#109271]) +91 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-glk3/igt@kms_flip@dpms-off-confusion-interruptible.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-glk9/igt@kms_flip@dpms-off-confusion-interruptible.html * igt@kms_flip@flip-vs-dpms-off-vs-modeset: - shard-apl: [PASS][45] -> [SKIP][46] ([fdo#109271]) +41 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-apl6/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-apl6/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@plain-flip-ts-check: - shard-kbl: [PASS][47] -> [SKIP][48] ([fdo#109271]) +40 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-kbl4/igt@kms_flip@plain-flip-ts-check.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-kbl1/igt@kms_flip@plain-flip-ts-check.html * igt@kms_flip_tiling@flip-changes-tiling-yf: - shard-kbl: [PASS][49] -> [FAIL][50] ([i915#699] / [i915#93] / [i915#95]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-kbl6/igt@kms_flip_tiling@flip-changes-tiling-yf.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-kbl2/igt@kms_flip_tiling@flip-changes-tiling-yf.html - shard-apl: [PASS][51] -> [FAIL][52] ([i915#95]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-apl3/igt@kms_flip_tiling@flip-changes-tiling-yf.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-apl7/igt@kms_flip_tiling@flip-changes-tiling-yf.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - shard-kbl: [PASS][53] -> [FAIL][54] ([i915#53] / [i915#93] / [i915#95]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-kbl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes: - shard-apl: [PASS][55] -> [DMESG-WARN][56] ([i915#180]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-apl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-kbl: [PASS][57] -> [DMESG-WARN][58] ([i915#165]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html * igt@kms_psr@primary_blt: - shard-tglb: [PASS][59] -> [SKIP][60] ([i915#668]) +6 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-tglb1/igt@kms_psr@primary_blt.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-tglb6/igt@kms_psr@primary_blt.html * igt@kms_psr@psr2_primary_render: - shard-iclb: [PASS][61] -> [SKIP][62] ([fdo#109441]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-iclb2/igt@kms_psr@psr2_primary_render.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-iclb3/igt@kms_psr@psr2_primary_render.html #### Possible fixes #### * {igt@gem_ctx_isolation@preservation-s3@bcs0}: - shard-kbl: [DMESG-WARN][63] ([i915#180]) -> [PASS][64] +2 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@bcs0.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-kbl6/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_exec_balancer@smoke: - shard-iclb: [SKIP][65] ([fdo#110854]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-iclb5/igt@gem_exec_balancer@smoke.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-iclb4/igt@gem_exec_balancer@smoke.html * igt@gem_mmap_gtt@cpuset-big-copy-xy: - shard-tglb: [FAIL][67] -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-tglb8/igt@gem_mmap_gtt@cpuset-big-copy-xy.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-tglb5/igt@gem_mmap_gtt@cpuset-big-copy-xy.html * igt@gem_tiled_swapping@non-threaded: - shard-snb: [FAIL][69] -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-snb4/igt@gem_tiled_swapping@non-threaded.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-snb6/igt@gem_tiled_swapping@non-threaded.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [DMESG-WARN][71] ([i915#180]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-apl8/igt@i915_suspend@fence-restore-tiled2untiled.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_cursor_crc@pipe-a-cursor-256x256-offscreen: - shard-kbl: [FAIL][73] ([i915#54] / [i915#93] / [i915#95]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-256x256-offscreen.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-kbl3/igt@kms_cursor_crc@pipe-a-cursor-256x256-offscreen.html * igt@kms_draw_crc@draw-method-rgb565-mmap-wc-ytiled: - shard-glk: [FAIL][75] ([i915#52] / [i915#54]) -> [PASS][76] +4 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-glk8/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-ytiled.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-glk4/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-ytiled.html * igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-untiled: - shard-kbl: [FAIL][77] ([i915#177] / [i915#52] / [i915#54] / [i915#93] / [i915#95]) -> [PASS][78] +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-kbl4/igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-untiled.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-kbl7/igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-untiled.html - shard-apl: [FAIL][79] ([i915#52] / [i915#54] / [i915#95]) -> [PASS][80] +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-apl8/igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-untiled.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-apl8/igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-untiled.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu: - shard-glk: [FAIL][81] ([i915#49]) -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-glk7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_psr@no_drrs: - shard-iclb: [FAIL][83] ([i915#173]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-iclb1/igt@kms_psr@no_drrs.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-iclb3/igt@kms_psr@no_drrs.html * igt@kms_psr@psr2_cursor_blt: - shard-iclb: [SKIP][85] ([fdo#109441]) -> [PASS][86] +2 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-iclb3/igt@kms_psr@psr2_cursor_blt.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html * igt@kms_universal_plane@universal-plane-pipe-c-functional: - shard-glk: [FAIL][87] ([i915#331]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-glk3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-glk9/igt@kms_universal_plane@universal-plane-pipe-c-functional.html - shard-apl: [FAIL][89] ([i915#331]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-apl1/igt@kms_universal_plane@universal-plane-pipe-c-functional.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-apl7/igt@kms_universal_plane@universal-plane-pipe-c-functional.html #### Warnings #### * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-iclb: [SKIP][91] ([i915#658]) -> [SKIP][92] ([i915#588]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-iclb4/igt@i915_pm_dc@dc3co-vpb-simulation.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_dc@dc6-psr: - shard-tglb: [SKIP][93] ([i915#468]) -> [SKIP][94] ([i915#668]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-tglb2/igt@i915_pm_dc@dc6-psr.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-tglb6/igt@i915_pm_dc@dc6-psr.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-iclb: [SKIP][95] ([fdo#109274]) -> [SKIP][96] ([i915#1615]) +44 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-iclb3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-iclb6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-apl: [DMESG-WARN][97] ([i915#180]) -> [SKIP][98] ([fdo#109271]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5562/shard-apl1/igt@kms_flip@flip-vs-suspend.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/shard-apl2/igt@kms_flip@flip-vs-suspend.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [i915#1119]: https://gitlab.freedesktop.org/drm/intel/issues/1119 [i915#1288]: https://gitlab.freedesktop.org/drm/intel/issues/1288 [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316 [i915#151]: https://gitlab.freedesktop.org/drm/intel/issues/151 [i915#1519]: https://gitlab.freedesktop.org/drm/intel/issues/1519 [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542 [i915#1615]: https://gitlab.freedesktop.org/drm/intel/issues/1615 [i915#165]: https://gitlab.freedesktop.org/drm/intel/issues/165 [i915#173]: https://gitlab.freedesktop.org/drm/intel/issues/173 [i915#177]: https://gitlab.freedesktop.org/drm/intel/issues/177 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#331]: https://gitlab.freedesktop.org/drm/intel/issues/331 [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468 [i915#488]: https://gitlab.freedesktop.org/drm/intel/issues/488 [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49 [i915#52]: https://gitlab.freedesktop.org/drm/intel/issues/52 [i915#53]: https://gitlab.freedesktop.org/drm/intel/issues/53 [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579 [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668 [i915#699]: https://gitlab.freedesktop.org/drm/intel/issues/699 [i915#93]: https://gitlab.freedesktop.org/drm/intel/issues/93 [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95 Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5562 -> IGTPW_4402 CI-20190529: 20190529 CI_DRM_8244: 55348aac86bd6f0c4ce4d3d8a0e227f6a20a72f9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4402: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/index.html IGT_5562: 4770480c8c1f105ff9225e8eb07b652ca954e06a @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4402/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture (rev3) 2020-04-02 12:29 [igt-dev] [PATCH i-g-t] tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture Imre Deak ` (6 preceding siblings ...) 2020-04-03 20:54 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2020-04-03 23:50 ` Patchwork 2020-04-04 11:23 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 8 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2020-04-03 23:50 UTC (permalink / raw) To: Imre Deak; +Cc: igt-dev == Series Details == Series: tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture (rev3) URL : https://patchwork.freedesktop.org/series/75416/ State : success == Summary == CI Bug Log - changes from CI_DRM_8252 -> IGTPW_4405 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/index.html Changes ------- No changes found Participating hosts (51 -> 42) ------------------------------ Missing (9): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-snb-2520m fi-kbl-7560u fi-byt-clapper fi-bdw-samus fi-kbl-r Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5563 -> IGTPW_4405 CI-20190529: 20190529 CI_DRM_8252: 3690abb8ed49d9a066f80de39e4e75792c86ac76 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4405: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/index.html IGT_5563: 7ab7807727262b7ed7e12197b78e867287a17ef6 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture (rev3) 2020-04-02 12:29 [igt-dev] [PATCH i-g-t] tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture Imre Deak ` (7 preceding siblings ...) 2020-04-03 23:50 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture (rev3) Patchwork @ 2020-04-04 11:23 ` Patchwork 2020-04-06 8:18 ` Imre Deak 8 siblings, 1 reply; 15+ messages in thread From: Patchwork @ 2020-04-04 11:23 UTC (permalink / raw) To: Imre Deak; +Cc: igt-dev == Series Details == Series: tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture (rev3) URL : https://patchwork.freedesktop.org/series/75416/ State : success == Summary == CI Bug Log - changes from CI_DRM_8252_full -> IGTPW_4405_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/index.html New tests --------- New tests have been introduced between CI_DRM_8252_full and IGTPW_4405_full: ### New IGT tests (3) ### * igt@prime_busy@after-wait: - Statuses : - Exec time: [None] s * igt@prime_busy@before: - Statuses : - Exec time: [None] s * igt@prime_busy@hang-wait: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_4405_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3: - shard-kbl: [PASS][1] -> [DMESG-WARN][2] ([i915#180]) +5 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl4/igt@gem_exec_suspend@basic-s3.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl4/igt@gem_exec_suspend@basic-s3.html * igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding: - shard-apl: [PASS][3] -> [FAIL][4] ([i915#54] / [i915#95]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl4/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl6/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html * igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen: - shard-kbl: [PASS][5] -> [FAIL][6] ([i915#54] / [i915#93] / [i915#95]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html * igt@kms_draw_crc@draw-method-rgb565-blt-ytiled: - shard-glk: [PASS][7] -> [FAIL][8] ([i915#52] / [i915#54]) +3 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-glk7/igt@kms_draw_crc@draw-method-rgb565-blt-ytiled.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-blt-ytiled.html * igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled: - shard-glk: [PASS][9] -> [FAIL][10] ([i915#177] / [i915#52] / [i915#54]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html * igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled: - shard-kbl: [PASS][11] -> [FAIL][12] ([i915#177] / [i915#52] / [i915#54] / [i915#93] / [i915#95]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl7/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl4/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html - shard-apl: [PASS][13] -> [FAIL][14] ([i915#52] / [i915#54] / [i915#95]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl7/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl1/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html * igt@kms_flip@flip-vs-expired-vblank: - shard-glk: [PASS][15] -> [FAIL][16] ([i915#79]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-glk8/igt@kms_flip@flip-vs-expired-vblank.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-glk5/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip_tiling@flip-changes-tiling: - shard-apl: [PASS][17] -> [FAIL][18] ([i915#95]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl6/igt@kms_flip_tiling@flip-changes-tiling.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl3/igt@kms_flip_tiling@flip-changes-tiling.html - shard-kbl: [PASS][19] -> [FAIL][20] ([i915#699] / [i915#93] / [i915#95]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl1/igt@kms_flip_tiling@flip-changes-tiling.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl3/igt@kms_flip_tiling@flip-changes-tiling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: - shard-kbl: [PASS][21] -> [FAIL][22] ([i915#49]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html - shard-apl: [PASS][23] -> [FAIL][24] ([i915#49]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-glk: [PASS][25] -> [FAIL][26] ([i915#49]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-glk7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-glk3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-apl: [PASS][27] -> [DMESG-WARN][28] ([i915#180]) +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html * igt@kms_psr@no_drrs: - shard-iclb: [PASS][29] -> [FAIL][30] ([i915#173]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-iclb4/igt@kms_psr@no_drrs.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-iclb1/igt@kms_psr@no_drrs.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-iclb: [PASS][31] -> [SKIP][32] ([fdo#109441]) +4 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-iclb5/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_vblank@pipe-b-query-forked-busy: - shard-snb: [PASS][33] -> [SKIP][34] ([fdo#109271]) +2 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-snb6/igt@kms_vblank@pipe-b-query-forked-busy.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-snb1/igt@kms_vblank@pipe-b-query-forked-busy.html #### Possible fixes #### * {igt@gem_ctx_isolation@preservation-s3@bcs0}: - shard-kbl: [DMESG-WARN][35] ([i915#180]) -> [PASS][36] +4 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl4/igt@gem_ctx_isolation@preservation-s3@bcs0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl6/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_exec_balancer@smoke: - shard-iclb: [SKIP][37] ([fdo#110854]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-iclb5/igt@gem_exec_balancer@smoke.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-iclb2/igt@gem_exec_balancer@smoke.html * igt@gem_exec_suspend@basic-s0: - shard-tglb: [INCOMPLETE][39] ([i915#456]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-tglb8/igt@gem_exec_suspend@basic-s0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-tglb5/igt@gem_exec_suspend@basic-s0.html * igt@kms_cursor_crc@pipe-a-cursor-256x256-onscreen: - shard-kbl: [FAIL][41] ([i915#54] / [i915#93] / [i915#95]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-256x256-onscreen.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-256x256-onscreen.html * igt@kms_cursor_crc@pipe-b-cursor-256x85-random: - shard-hsw: [INCOMPLETE][43] ([i915#61]) -> [PASS][44] +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-hsw4/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-hsw1/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html * igt@kms_cursor_crc@pipe-c-cursor-64x64-random: - shard-kbl: [FAIL][45] ([i915#54]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-64x64-random.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-64x64-random.html - shard-apl: [FAIL][47] ([i915#54]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl3/igt@kms_cursor_crc@pipe-c-cursor-64x64-random.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-64x64-random.html * igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic: - shard-kbl: [FAIL][49] ([i915#93] / [i915#95]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl2/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl6/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html * igt@kms_draw_crc@draw-method-rgb565-mmap-wc-xtiled: - shard-glk: [FAIL][51] ([i915#52] / [i915#54]) -> [PASS][52] +3 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-glk8/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-xtiled.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-glk6/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-xtiled.html * igt@kms_draw_crc@draw-method-xrgb8888-mmap-gtt-untiled: - shard-apl: [FAIL][53] ([i915#52] / [i915#54] / [i915#95]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl6/igt@kms_draw_crc@draw-method-xrgb8888-mmap-gtt-untiled.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl2/igt@kms_draw_crc@draw-method-xrgb8888-mmap-gtt-untiled.html - shard-kbl: [FAIL][55] ([i915#177] / [i915#52] / [i915#54] / [i915#93] / [i915#95]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl4/igt@kms_draw_crc@draw-method-xrgb8888-mmap-gtt-untiled.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl3/igt@kms_draw_crc@draw-method-xrgb8888-mmap-gtt-untiled.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: [FAIL][57] ([i915#1525] / [i915#95]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl7/igt@kms_fbcon_fbt@fbc-suspend.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html - shard-kbl: [FAIL][59] ([i915#64] / [i915#93] / [i915#95]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl7/igt@kms_fbcon_fbt@fbc-suspend.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-glk: [FAIL][61] ([i915#79]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-glk: [FAIL][63] ([i915#49]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-glk1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-glk6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_hdr@bpc-switch-dpms: - shard-apl: [FAIL][65] ([i915#1188]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl2/igt@kms_hdr@bpc-switch-dpms.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl7/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: - shard-apl: [DMESG-WARN][67] ([i915#180]) -> [PASS][68] +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html * igt@kms_plane_lowres@pipe-a-tiling-x: - shard-glk: [FAIL][69] ([i915#899]) -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-glk6/igt@kms_plane_lowres@pipe-a-tiling-x.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-glk6/igt@kms_plane_lowres@pipe-a-tiling-x.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [SKIP][71] ([fdo#109441]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-iclb4/igt@kms_psr@psr2_cursor_render.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-iclb2/igt@kms_psr@psr2_cursor_render.html * igt@kms_setmode@basic: - shard-kbl: [FAIL][73] ([i915#31]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl4/igt@kms_setmode@basic.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl1/igt@kms_setmode@basic.html * {igt@perf@polling-parameterized}: - shard-iclb: [FAIL][75] ([i915#1542]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-iclb5/igt@perf@polling-parameterized.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-iclb1/igt@perf@polling-parameterized.html #### Warnings #### * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-tglb: [SKIP][77] ([fdo#109506]) -> [SKIP][78] ([i915#1316] / [i915#579]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-tglb3/igt@i915_pm_rpm@modeset-pc8-residency-stress.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-tglb2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html - shard-iclb: [SKIP][79] ([fdo#109293] / [fdo#109506]) -> [SKIP][80] ([i915#1316] / [i915#579]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-iclb5/igt@i915_pm_rpm@modeset-pc8-residency-stress.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-iclb5/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@kms_plane_alpha_blend@pipe-a-alpha-7efc: - shard-apl: [FAIL][81] ([fdo#108145] / [i915#265] / [i915#95]) -> [FAIL][82] ([fdo#108145] / [i915#265]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl6/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl8/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html - shard-kbl: [FAIL][83] ([fdo#108145] / [i915#265] / [i915#93] / [i915#95]) -> [FAIL][84] ([fdo#108145] / [i915#265]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl1/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl6/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.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#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188 [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316 [i915#1525]: https://gitlab.freedesktop.org/drm/intel/issues/1525 [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542 [i915#173]: https://gitlab.freedesktop.org/drm/intel/issues/173 [i915#177]: https://gitlab.freedesktop.org/drm/intel/issues/177 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 [i915#456]: https://gitlab.freedesktop.org/drm/intel/issues/456 [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49 [i915#52]: https://gitlab.freedesktop.org/drm/intel/issues/52 [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579 [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61 [i915#64]: https://gitlab.freedesktop.org/drm/intel/issues/64 [i915#699]: https://gitlab.freedesktop.org/drm/intel/issues/699 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#899]: https://gitlab.freedesktop.org/drm/intel/issues/899 [i915#93]: https://gitlab.freedesktop.org/drm/intel/issues/93 [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95 Participating hosts (10 -> 8) ------------------------------ Missing (2): pig-skl-6260u pig-glk-j5005 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5563 -> IGTPW_4405 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_8252: 3690abb8ed49d9a066f80de39e4e75792c86ac76 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4405: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/index.html IGT_5563: 7ab7807727262b7ed7e12197b78e867287a17ef6 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture (rev3) 2020-04-04 11:23 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork @ 2020-04-06 8:18 ` Imre Deak 0 siblings, 0 replies; 15+ messages in thread From: Imre Deak @ 2020-04-06 8:18 UTC (permalink / raw) To: igt-dev, Jose Souza On Sat, Apr 04, 2020 at 11:23:09AM +0000, Patchwork wrote: > == Series Details == > > Series: tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture (rev3) > URL : https://patchwork.freedesktop.org/series/75416/ > State : success Thanks for the review pushed. > > == Summary == > > CI Bug Log - changes from CI_DRM_8252_full -> IGTPW_4405_full > ==================================================== > > Summary > ------- > > **SUCCESS** > > No regressions found. > > External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/index.html > > New tests > --------- > > New tests have been introduced between CI_DRM_8252_full and IGTPW_4405_full: > > ### New IGT tests (3) ### > > * igt@prime_busy@after-wait: > - Statuses : > - Exec time: [None] s > > * igt@prime_busy@before: > - Statuses : > - Exec time: [None] s > > * igt@prime_busy@hang-wait: > - Statuses : > - Exec time: [None] s > > > > Known issues > ------------ > > Here are the changes found in IGTPW_4405_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@gem_exec_suspend@basic-s3: > - shard-kbl: [PASS][1] -> [DMESG-WARN][2] ([i915#180]) +5 similar issues > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl4/igt@gem_exec_suspend@basic-s3.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl4/igt@gem_exec_suspend@basic-s3.html > > * igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding: > - shard-apl: [PASS][3] -> [FAIL][4] ([i915#54] / [i915#95]) > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl4/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl6/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html > > * igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen: > - shard-kbl: [PASS][5] -> [FAIL][6] ([i915#54] / [i915#93] / [i915#95]) +1 similar issue > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html > > * igt@kms_draw_crc@draw-method-rgb565-blt-ytiled: > - shard-glk: [PASS][7] -> [FAIL][8] ([i915#52] / [i915#54]) +3 similar issues > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-glk7/igt@kms_draw_crc@draw-method-rgb565-blt-ytiled.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-blt-ytiled.html > > * igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled: > - shard-glk: [PASS][9] -> [FAIL][10] ([i915#177] / [i915#52] / [i915#54]) > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html > > * igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled: > - shard-kbl: [PASS][11] -> [FAIL][12] ([i915#177] / [i915#52] / [i915#54] / [i915#93] / [i915#95]) > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl7/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl4/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html > - shard-apl: [PASS][13] -> [FAIL][14] ([i915#52] / [i915#54] / [i915#95]) > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl7/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl1/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html > > * igt@kms_flip@flip-vs-expired-vblank: > - shard-glk: [PASS][15] -> [FAIL][16] ([i915#79]) > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-glk8/igt@kms_flip@flip-vs-expired-vblank.html > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-glk5/igt@kms_flip@flip-vs-expired-vblank.html > > * igt@kms_flip_tiling@flip-changes-tiling: > - shard-apl: [PASS][17] -> [FAIL][18] ([i915#95]) > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl6/igt@kms_flip_tiling@flip-changes-tiling.html > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl3/igt@kms_flip_tiling@flip-changes-tiling.html > - shard-kbl: [PASS][19] -> [FAIL][20] ([i915#699] / [i915#93] / [i915#95]) > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl1/igt@kms_flip_tiling@flip-changes-tiling.html > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl3/igt@kms_flip_tiling@flip-changes-tiling.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: > - shard-kbl: [PASS][21] -> [FAIL][22] ([i915#49]) > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html > - shard-apl: [PASS][23] -> [FAIL][24] ([i915#49]) > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html > > * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: > - shard-glk: [PASS][25] -> [FAIL][26] ([i915#49]) > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-glk7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-glk3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: > - shard-apl: [PASS][27] -> [DMESG-WARN][28] ([i915#180]) +1 similar issue > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html > > * igt@kms_psr@no_drrs: > - shard-iclb: [PASS][29] -> [FAIL][30] ([i915#173]) > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-iclb4/igt@kms_psr@no_drrs.html > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-iclb1/igt@kms_psr@no_drrs.html > > * igt@kms_psr@psr2_cursor_mmap_cpu: > - shard-iclb: [PASS][31] -> [SKIP][32] ([fdo#109441]) +4 similar issues > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-iclb5/igt@kms_psr@psr2_cursor_mmap_cpu.html > > * igt@kms_vblank@pipe-b-query-forked-busy: > - shard-snb: [PASS][33] -> [SKIP][34] ([fdo#109271]) +2 similar issues > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-snb6/igt@kms_vblank@pipe-b-query-forked-busy.html > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-snb1/igt@kms_vblank@pipe-b-query-forked-busy.html > > > #### Possible fixes #### > > * {igt@gem_ctx_isolation@preservation-s3@bcs0}: > - shard-kbl: [DMESG-WARN][35] ([i915#180]) -> [PASS][36] +4 similar issues > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl4/igt@gem_ctx_isolation@preservation-s3@bcs0.html > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl6/igt@gem_ctx_isolation@preservation-s3@bcs0.html > > * igt@gem_exec_balancer@smoke: > - shard-iclb: [SKIP][37] ([fdo#110854]) -> [PASS][38] > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-iclb5/igt@gem_exec_balancer@smoke.html > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-iclb2/igt@gem_exec_balancer@smoke.html > > * igt@gem_exec_suspend@basic-s0: > - shard-tglb: [INCOMPLETE][39] ([i915#456]) -> [PASS][40] > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-tglb8/igt@gem_exec_suspend@basic-s0.html > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-tglb5/igt@gem_exec_suspend@basic-s0.html > > * igt@kms_cursor_crc@pipe-a-cursor-256x256-onscreen: > - shard-kbl: [FAIL][41] ([i915#54] / [i915#93] / [i915#95]) -> [PASS][42] > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-256x256-onscreen.html > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-256x256-onscreen.html > > * igt@kms_cursor_crc@pipe-b-cursor-256x85-random: > - shard-hsw: [INCOMPLETE][43] ([i915#61]) -> [PASS][44] +1 similar issue > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-hsw4/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-hsw1/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html > > * igt@kms_cursor_crc@pipe-c-cursor-64x64-random: > - shard-kbl: [FAIL][45] ([i915#54]) -> [PASS][46] > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-64x64-random.html > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-64x64-random.html > - shard-apl: [FAIL][47] ([i915#54]) -> [PASS][48] > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl3/igt@kms_cursor_crc@pipe-c-cursor-64x64-random.html > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-64x64-random.html > > * igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic: > - shard-kbl: [FAIL][49] ([i915#93] / [i915#95]) -> [PASS][50] > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl2/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl6/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html > > * igt@kms_draw_crc@draw-method-rgb565-mmap-wc-xtiled: > - shard-glk: [FAIL][51] ([i915#52] / [i915#54]) -> [PASS][52] +3 similar issues > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-glk8/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-xtiled.html > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-glk6/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-xtiled.html > > * igt@kms_draw_crc@draw-method-xrgb8888-mmap-gtt-untiled: > - shard-apl: [FAIL][53] ([i915#52] / [i915#54] / [i915#95]) -> [PASS][54] > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl6/igt@kms_draw_crc@draw-method-xrgb8888-mmap-gtt-untiled.html > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl2/igt@kms_draw_crc@draw-method-xrgb8888-mmap-gtt-untiled.html > - shard-kbl: [FAIL][55] ([i915#177] / [i915#52] / [i915#54] / [i915#93] / [i915#95]) -> [PASS][56] > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl4/igt@kms_draw_crc@draw-method-xrgb8888-mmap-gtt-untiled.html > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl3/igt@kms_draw_crc@draw-method-xrgb8888-mmap-gtt-untiled.html > > * igt@kms_fbcon_fbt@fbc-suspend: > - shard-apl: [FAIL][57] ([i915#1525] / [i915#95]) -> [PASS][58] > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl7/igt@kms_fbcon_fbt@fbc-suspend.html > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html > - shard-kbl: [FAIL][59] ([i915#64] / [i915#93] / [i915#95]) -> [PASS][60] > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl7/igt@kms_fbcon_fbt@fbc-suspend.html > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html > > * igt@kms_flip@2x-flip-vs-expired-vblank: > - shard-glk: [FAIL][61] ([i915#79]) -> [PASS][62] > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank.html > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu: > - shard-glk: [FAIL][63] ([i915#49]) -> [PASS][64] > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-glk1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu.html > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-glk6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu.html > > * igt@kms_hdr@bpc-switch-dpms: > - shard-apl: [FAIL][65] ([i915#1188]) -> [PASS][66] > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl2/igt@kms_hdr@bpc-switch-dpms.html > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl7/igt@kms_hdr@bpc-switch-dpms.html > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: > - shard-apl: [DMESG-WARN][67] ([i915#180]) -> [PASS][68] +1 similar issue > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > > * igt@kms_plane_lowres@pipe-a-tiling-x: > - shard-glk: [FAIL][69] ([i915#899]) -> [PASS][70] > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-glk6/igt@kms_plane_lowres@pipe-a-tiling-x.html > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-glk6/igt@kms_plane_lowres@pipe-a-tiling-x.html > > * igt@kms_psr@psr2_cursor_render: > - shard-iclb: [SKIP][71] ([fdo#109441]) -> [PASS][72] > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-iclb4/igt@kms_psr@psr2_cursor_render.html > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-iclb2/igt@kms_psr@psr2_cursor_render.html > > * igt@kms_setmode@basic: > - shard-kbl: [FAIL][73] ([i915#31]) -> [PASS][74] > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl4/igt@kms_setmode@basic.html > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl1/igt@kms_setmode@basic.html > > * {igt@perf@polling-parameterized}: > - shard-iclb: [FAIL][75] ([i915#1542]) -> [PASS][76] > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-iclb5/igt@perf@polling-parameterized.html > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-iclb1/igt@perf@polling-parameterized.html > > > #### Warnings #### > > * igt@i915_pm_rpm@modeset-pc8-residency-stress: > - shard-tglb: [SKIP][77] ([fdo#109506]) -> [SKIP][78] ([i915#1316] / [i915#579]) > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-tglb3/igt@i915_pm_rpm@modeset-pc8-residency-stress.html > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-tglb2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html > - shard-iclb: [SKIP][79] ([fdo#109293] / [fdo#109506]) -> [SKIP][80] ([i915#1316] / [i915#579]) > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-iclb5/igt@i915_pm_rpm@modeset-pc8-residency-stress.html > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-iclb5/igt@i915_pm_rpm@modeset-pc8-residency-stress.html > > * igt@kms_plane_alpha_blend@pipe-a-alpha-7efc: > - shard-apl: [FAIL][81] ([fdo#108145] / [i915#265] / [i915#95]) -> [FAIL][82] ([fdo#108145] / [i915#265]) > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-apl6/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-apl8/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html > - shard-kbl: [FAIL][83] ([fdo#108145] / [i915#265] / [i915#93] / [i915#95]) -> [FAIL][84] ([fdo#108145] / [i915#265]) > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8252/shard-kbl1/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/shard-kbl6/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.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#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 > [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 > [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 > [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 > [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188 > [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316 > [i915#1525]: https://gitlab.freedesktop.org/drm/intel/issues/1525 > [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542 > [i915#173]: https://gitlab.freedesktop.org/drm/intel/issues/173 > [i915#177]: https://gitlab.freedesktop.org/drm/intel/issues/177 > [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 > [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 > [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 > [i915#456]: https://gitlab.freedesktop.org/drm/intel/issues/456 > [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49 > [i915#52]: https://gitlab.freedesktop.org/drm/intel/issues/52 > [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 > [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579 > [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61 > [i915#64]: https://gitlab.freedesktop.org/drm/intel/issues/64 > [i915#699]: https://gitlab.freedesktop.org/drm/intel/issues/699 > [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 > [i915#899]: https://gitlab.freedesktop.org/drm/intel/issues/899 > [i915#93]: https://gitlab.freedesktop.org/drm/intel/issues/93 > [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95 > > > Participating hosts (10 -> 8) > ------------------------------ > > Missing (2): pig-skl-6260u pig-glk-j5005 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_5563 -> IGTPW_4405 > * Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_8252: 3690abb8ed49d9a066f80de39e4e75792c86ac76 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_4405: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/index.html > IGT_5563: 7ab7807727262b7ed7e12197b78e867287a17ef6 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4405/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2020-04-06 8:18 UTC | newest] Thread overview: 15+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-04-02 12:29 [igt-dev] [PATCH i-g-t] tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture Imre Deak 2020-04-02 17:04 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2020-04-02 20:21 ` [igt-dev] [PATCH i-g-t] " Souza, Jose 2020-04-03 12:34 ` Imre Deak 2020-04-03 12:42 ` [igt-dev] [PATCH v2] " Imre Deak 2020-04-03 14:26 ` [igt-dev] [PATCH v3] " Imre Deak 2020-04-03 17:50 ` Souza, Jose 2020-04-03 13:25 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 2020-04-03 13:51 ` Imre Deak 2020-04-03 14:15 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture (rev2) Patchwork 2020-04-03 14:36 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2020-04-03 20:54 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2020-04-03 23:50 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_flip: Skip detiler fences subtest on platforms w/o aperture (rev3) Patchwork 2020-04-04 11:23 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2020-04-06 8:18 ` Imre Deak
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox