* [igt-dev] [PATCH i-g-t] tests/kms_psr2_sf: Enable selective fetch
@ 2021-02-04 14:08 José Roberto de Souza
2021-02-04 15:11 ` Petri Latvala
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: José Roberto de Souza @ 2021-02-04 14:08 UTC (permalink / raw)
To: igt-dev
Reload driver enabling PSR2 selective fetch to start to have
some tests coverage of this feature by CI.
Cc: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
Cc: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com>
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
---
tests/kms_psr2_sf.c | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/tests/kms_psr2_sf.c b/tests/kms_psr2_sf.c
index 296ed8476..751d6ff03 100644
--- a/tests/kms_psr2_sf.c
+++ b/tests/kms_psr2_sf.c
@@ -24,6 +24,7 @@
#include "igt.h"
#include "igt_sysfs.h"
+#include "igt_kmod.h"
#include "igt_psr.h"
#include <errno.h>
#include <stdbool.h>
@@ -544,6 +545,14 @@ static void cleanup(data_t *data)
igt_remove_fb(data->drm_fd, &data->fb_test);
}
+static void reload_driver(bool enable_sel_fetch)
+{
+ const char *params = enable_sel_fetch ? "enable_psr2_sel_fetch=1" : "";
+
+ igt_i915_driver_unload();
+ igt_assert_eq(igt_i915_driver_load(params), 0);
+}
+
igt_main
{
data_t data = {};
@@ -552,6 +561,9 @@ igt_main
igt_fixture {
int r;
+ /* TODO: drop this as soon driver enables it by default */
+ reload_driver(true);
+
data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
data.debugfs_fd = igt_debugfs_dir(data.drm_fd);
kmstest_set_vt_graphics_mode();
@@ -645,5 +657,7 @@ igt_main
close(data.debugfs_fd);
drm_intel_bufmgr_destroy(data.bufmgr);
display_fini(&data);
+
+ reload_driver(false);
}
}
--
2.30.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [igt-dev] [PATCH i-g-t] tests/kms_psr2_sf: Enable selective fetch 2021-02-04 14:08 [igt-dev] [PATCH i-g-t] tests/kms_psr2_sf: Enable selective fetch José Roberto de Souza @ 2021-02-04 15:11 ` Petri Latvala 2021-02-04 15:17 ` Souza, Jose 2021-02-04 15:48 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2021-02-04 21:14 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 1 reply; 6+ messages in thread From: Petri Latvala @ 2021-02-04 15:11 UTC (permalink / raw) To: José Roberto de Souza; +Cc: igt-dev On Thu, Feb 04, 2021 at 06:08:41AM -0800, José Roberto de Souza wrote: > Reload driver enabling PSR2 selective fetch to start to have > some tests coverage of this feature by CI. > > Cc: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com> > Cc: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com> > Signed-off-by: José Roberto de Souza <jose.souza@intel.com> > --- > tests/kms_psr2_sf.c | 14 ++++++++++++++ > 1 file changed, 14 insertions(+) > > diff --git a/tests/kms_psr2_sf.c b/tests/kms_psr2_sf.c > index 296ed8476..751d6ff03 100644 > --- a/tests/kms_psr2_sf.c > +++ b/tests/kms_psr2_sf.c > @@ -24,6 +24,7 @@ > > #include "igt.h" > #include "igt_sysfs.h" > +#include "igt_kmod.h" > #include "igt_psr.h" > #include <errno.h> > #include <stdbool.h> > @@ -544,6 +545,14 @@ static void cleanup(data_t *data) > igt_remove_fb(data->drm_fd, &data->fb_test); > } > > +static void reload_driver(bool enable_sel_fetch) > +{ > + const char *params = enable_sel_fetch ? "enable_psr2_sel_fetch=1" : ""; > + > + igt_i915_driver_unload(); > + igt_assert_eq(igt_i915_driver_load(params), 0); > +} Does this parameter need to be set at load time or would igt_params_set() suffice? -- Petri Latvala > + > igt_main > { > data_t data = {}; > @@ -552,6 +561,9 @@ igt_main > igt_fixture { > int r; > > + /* TODO: drop this as soon driver enables it by default */ > + reload_driver(true); > + > data.drm_fd = drm_open_driver_master(DRIVER_INTEL); > data.debugfs_fd = igt_debugfs_dir(data.drm_fd); > kmstest_set_vt_graphics_mode(); > @@ -645,5 +657,7 @@ igt_main > close(data.debugfs_fd); > drm_intel_bufmgr_destroy(data.bufmgr); > display_fini(&data); > + > + reload_driver(false); > } > } > -- > 2.30.0 > > _______________________________________________ > igt-dev mailing list > igt-dev@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/igt-dev _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/kms_psr2_sf: Enable selective fetch 2021-02-04 15:11 ` Petri Latvala @ 2021-02-04 15:17 ` Souza, Jose 2021-02-05 7:34 ` Petri Latvala 0 siblings, 1 reply; 6+ messages in thread From: Souza, Jose @ 2021-02-04 15:17 UTC (permalink / raw) To: Latvala, Petri; +Cc: igt-dev@lists.freedesktop.org On Thu, 2021-02-04 at 17:11 +0200, Petri Latvala wrote: > On Thu, Feb 04, 2021 at 06:08:41AM -0800, José Roberto de Souza wrote: > > Reload driver enabling PSR2 selective fetch to start to have > > some tests coverage of this feature by CI. > > > > Cc: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com> > > Cc: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com> > > Signed-off-by: José Roberto de Souza <jose.souza@intel.com> > > --- > > tests/kms_psr2_sf.c | 14 ++++++++++++++ > > 1 file changed, 14 insertions(+) > > > > diff --git a/tests/kms_psr2_sf.c b/tests/kms_psr2_sf.c > > index 296ed8476..751d6ff03 100644 > > --- a/tests/kms_psr2_sf.c > > +++ b/tests/kms_psr2_sf.c > > @@ -24,6 +24,7 @@ > > > > > > > > > > #include "igt.h" > > #include "igt_sysfs.h" > > +#include "igt_kmod.h" > > #include "igt_psr.h" > > #include <errno.h> > > #include <stdbool.h> > > @@ -544,6 +545,14 @@ static void cleanup(data_t *data) > > igt_remove_fb(data->drm_fd, &data->fb_test); > > } > > > > > > > > > > +static void reload_driver(bool enable_sel_fetch) > > +{ > > + const char *params = enable_sel_fetch ? "enable_psr2_sel_fetch=1" : ""; > > + > > + igt_i915_driver_unload(); > > + igt_assert_eq(igt_i915_driver_load(params), 0); > > +} > > > Does this parameter need to be set at load time or would igt_params_set() suffice? At driver load time, otherwise more handling would be needed in kernel and IGT. But yeah the kernel parameter right now have the wrong permission, sending a kernel patch fixing it. > > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/kms_psr2_sf: Enable selective fetch 2021-02-04 15:17 ` Souza, Jose @ 2021-02-05 7:34 ` Petri Latvala 0 siblings, 0 replies; 6+ messages in thread From: Petri Latvala @ 2021-02-05 7:34 UTC (permalink / raw) To: Souza, Jose; +Cc: igt-dev@lists.freedesktop.org On Thu, Feb 04, 2021 at 05:17:30PM +0200, Souza, Jose wrote: > On Thu, 2021-02-04 at 17:11 +0200, Petri Latvala wrote: > > On Thu, Feb 04, 2021 at 06:08:41AM -0800, José Roberto de Souza wrote: > > > Reload driver enabling PSR2 selective fetch to start to have > > > some tests coverage of this feature by CI. > > > > > > Cc: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com> > > > Cc: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com> > > > Signed-off-by: José Roberto de Souza <jose.souza@intel.com> > > > --- > > > tests/kms_psr2_sf.c | 14 ++++++++++++++ > > > 1 file changed, 14 insertions(+) > > > > > > diff --git a/tests/kms_psr2_sf.c b/tests/kms_psr2_sf.c > > > index 296ed8476..751d6ff03 100644 > > > --- a/tests/kms_psr2_sf.c > > > +++ b/tests/kms_psr2_sf.c > > > @@ -24,6 +24,7 @@ > > > > > > > > > > > > > > > #include "igt.h" > > > #include "igt_sysfs.h" > > > +#include "igt_kmod.h" > > > #include "igt_psr.h" > > > #include <errno.h> > > > #include <stdbool.h> > > > @@ -544,6 +545,14 @@ static void cleanup(data_t *data) > > > igt_remove_fb(data->drm_fd, &data->fb_test); > > > } > > > > > > > > > > > > > > > +static void reload_driver(bool enable_sel_fetch) > > > +{ > > > + const char *params = enable_sel_fetch ? "enable_psr2_sel_fetch=1" : ""; > > > + > > > + igt_i915_driver_unload(); > > > + igt_assert_eq(igt_i915_driver_load(params), 0); > > > +} > > > > > > Does this parameter need to be set at load time or would igt_params_set() suffice? > > At driver load time, otherwise more handling would be needed in kernel and IGT. > But yeah the kernel parameter right now have the wrong permission, sending a kernel patch fixing it. We're blacklisting module reloads anyway (see top of tests/intel-ci/blacklist.txt), and this test will need to be as well for the same reasons. What's the test runtime? Are we able to add it to fast-feedback.testlist until the reload is no longer needed? -- Petri Latvala _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_psr2_sf: Enable selective fetch 2021-02-04 14:08 [igt-dev] [PATCH i-g-t] tests/kms_psr2_sf: Enable selective fetch José Roberto de Souza 2021-02-04 15:11 ` Petri Latvala @ 2021-02-04 15:48 ` Patchwork 2021-02-04 21:14 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2021-02-04 15:48 UTC (permalink / raw) To: José Roberto de Souza; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 3578 bytes --] == Series Details == Series: tests/kms_psr2_sf: Enable selective fetch URL : https://patchwork.freedesktop.org/series/86702/ State : success == Summary == CI Bug Log - changes from IGT_5991 -> IGTPW_5482 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/index.html Known issues ------------ Here are the changes found in IGTPW_5482 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0: - fi-tgl-y: [PASS][1] -> [DMESG-WARN][2] ([i915#2411] / [i915#402]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/fi-tgl-y/igt@gem_exec_suspend@basic-s0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/fi-tgl-y/igt@gem_exec_suspend@basic-s0.html * igt@i915_getparams_basic@basic-subslice-total: - fi-tgl-y: [PASS][3] -> [DMESG-WARN][4] ([i915#402]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/fi-tgl-y/igt@i915_getparams_basic@basic-subslice-total.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/fi-tgl-y/igt@i915_getparams_basic@basic-subslice-total.html * igt@i915_pm_rpm@module-reload: - fi-byt-j1900: [PASS][5] -> [INCOMPLETE][6] ([i915#142] / [i915#2405]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/fi-byt-j1900/igt@i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/fi-byt-j1900/igt@i915_pm_rpm@module-reload.html * igt@runner@aborted: - fi-byt-j1900: NOTRUN -> [FAIL][7] ([i915#1814] / [i915#2505]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/fi-byt-j1900/igt@runner@aborted.html #### Possible fixes #### * igt@debugfs_test@read_all_entries: - fi-tgl-y: [DMESG-WARN][8] ([i915#402]) -> [PASS][9] +2 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/fi-tgl-y/igt@debugfs_test@read_all_entries.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/fi-tgl-y/igt@debugfs_test@read_all_entries.html * igt@i915_pm_rpm@module-reload: - fi-kbl-7500u: [DMESG-WARN][10] ([i915#2605]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/fi-kbl-7500u/igt@i915_pm_rpm@module-reload.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/fi-kbl-7500u/igt@i915_pm_rpm@module-reload.html [i915#142]: https://gitlab.freedesktop.org/drm/intel/issues/142 [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814 [i915#2405]: https://gitlab.freedesktop.org/drm/intel/issues/2405 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2505]: https://gitlab.freedesktop.org/drm/intel/issues/2505 [i915#2605]: https://gitlab.freedesktop.org/drm/intel/issues/2605 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 Participating hosts (43 -> 38) ------------------------------ Missing (5): fi-jsl-1 fi-ilk-m540 fi-bsw-cyan fi-dg1-1 fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5991 -> IGTPW_5482 CI-20190529: 20190529 CI_DRM_9730: a70ac209cb308e06bc397cb3a6bf5764a4917333 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5482: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/index.html IGT_5991: a2d9c45fca85918ecf47761205555aade64b9220 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/index.html [-- Attachment #1.2: Type: text/html, Size: 4444 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_psr2_sf: Enable selective fetch 2021-02-04 14:08 [igt-dev] [PATCH i-g-t] tests/kms_psr2_sf: Enable selective fetch José Roberto de Souza 2021-02-04 15:11 ` Petri Latvala 2021-02-04 15:48 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2021-02-04 21:14 ` Patchwork 2 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2021-02-04 21:14 UTC (permalink / raw) To: Souza, Jose; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30259 bytes --] == Series Details == Series: tests/kms_psr2_sf: Enable selective fetch URL : https://patchwork.freedesktop.org/series/86702/ State : failure == Summary == CI Bug Log - changes from IGT_5991_full -> IGTPW_5482_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_5482_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5482_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_5482/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5482_full: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-tglb: [PASS][1] -> [FAIL][2] +10 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-tglb7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb1/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_cursor_edge_walk@pipe-a-256x256-right-edge: - shard-tglb: NOTRUN -> [FAIL][3] +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb2/igt@kms_cursor_edge_walk@pipe-a-256x256-right-edge.html Known issues ------------ Here are the changes found in IGTPW_5482_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_create@create-massive: - shard-iclb: NOTRUN -> [DMESG-WARN][4] ([i915#3002]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb8/igt@gem_create@create-massive.html - shard-tglb: NOTRUN -> [DMESG-WARN][5] ([i915#3002]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb3/igt@gem_create@create-massive.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-tglb: [PASS][6] -> [DMESG-WARN][7] ([i915#2411] / [i915#402]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-tglb2/igt@gem_ctx_isolation@preservation-s3@rcs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb3/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@legacy-engines-persistence: - shard-hsw: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#1099]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-hsw8/igt@gem_ctx_persistence@legacy-engines-persistence.html - shard-snb: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-snb5/igt@gem_ctx_persistence@legacy-engines-persistence.html * igt@gem_exec_balancer@hang: - shard-iclb: [PASS][10] -> [INCOMPLETE][11] ([i915#1895] / [i915#2295] / [i915#3031]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-iclb6/igt@gem_exec_balancer@hang.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb4/igt@gem_exec_balancer@hang.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [PASS][12] -> [FAIL][13] ([i915#2842]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-glk7/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-kbl: NOTRUN -> [FAIL][14] ([i915#2842]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-kbl1/igt@gem_exec_fair@basic-none-solo@rcs0.html - shard-glk: NOTRUN -> [FAIL][15] ([i915#2842]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-glk9/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-apl: [PASS][16] -> [FAIL][17] ([i915#2842]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-apl7/igt@gem_exec_fair@basic-none@vcs0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-apl4/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace: - shard-hsw: NOTRUN -> [SKIP][18] ([fdo#109271]) +37 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-hsw4/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-kbl: [PASS][19] -> [FAIL][20] ([i915#2842]) +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-kbl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-kbl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-tglb: NOTRUN -> [FAIL][21] ([i915#2842]) +5 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb3/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-iclb: NOTRUN -> [FAIL][22] ([i915#2842]) +4 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb3/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_huc_copy@huc-copy: - shard-apl: NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#2190]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-apl8/igt@gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#2190]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-glk3/igt@gem_huc_copy@huc-copy.html - shard-iclb: NOTRUN -> [SKIP][25] ([i915#2190]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb5/igt@gem_huc_copy@huc-copy.html - shard-kbl: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#2190]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-kbl7/igt@gem_huc_copy@huc-copy.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-kbl: NOTRUN -> [SKIP][27] ([fdo#109271]) +89 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-kbl6/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html - shard-iclb: NOTRUN -> [SKIP][28] ([i915#768]) +2 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_sync@basic-all: - shard-glk: [PASS][29] -> [DMESG-WARN][30] ([i915#118] / [i915#95]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-glk2/igt@gem_sync@basic-all.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-glk4/igt@gem_sync@basic-all.html * igt@gem_userptr_blits@readonly-mmap-unsync@wb: - shard-tglb: NOTRUN -> [SKIP][31] ([i915#1704]) +3 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb1/igt@gem_userptr_blits@readonly-mmap-unsync@wb.html - shard-iclb: NOTRUN -> [SKIP][32] ([i915#1704]) +3 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb5/igt@gem_userptr_blits@readonly-mmap-unsync@wb.html * igt@gem_workarounds@suspend-resume-context: - shard-apl: [PASS][33] -> [DMESG-WARN][34] ([i915#180]) +2 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-apl1/igt@gem_workarounds@suspend-resume-context.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-apl1/igt@gem_workarounds@suspend-resume-context.html * igt@gen7_exec_parse@load-register-reg: - shard-iclb: NOTRUN -> [SKIP][35] ([fdo#109289]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb3/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@basic-rejected: - shard-iclb: NOTRUN -> [SKIP][36] ([fdo#112306]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb1/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglb: NOTRUN -> [SKIP][37] ([fdo#112306]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb1/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglb: NOTRUN -> [WARN][38] ([i915#2681] / [i915#2684]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb1/igt@i915_pm_rc6_residency@rc6-idle.html - shard-iclb: NOTRUN -> [WARN][39] ([i915#2684]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_selftest@live@hangcheck: - shard-hsw: [PASS][40] -> [INCOMPLETE][41] ([i915#2782]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-hsw1/igt@i915_selftest@live@hangcheck.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-hsw7/igt@i915_selftest@live@hangcheck.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][42] ([fdo#110725] / [fdo#111614]) +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb8/igt@kms_big_fb@linear-32bpp-rotate-90.html - shard-tglb: NOTRUN -> [SKIP][43] ([fdo#111614]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb8/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180: - shard-iclb: NOTRUN -> [SKIP][44] ([fdo#109278]) +12 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb7/igt@kms_ccs@pipe-d-crc-primary-rotation-180.html * igt@kms_chamelium@dp-edid-change-during-suspend: - shard-apl: NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +10 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-apl8/igt@kms_chamelium@dp-edid-change-during-suspend.html * igt@kms_chamelium@hdmi-aspect-ratio: - shard-glk: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +4 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-glk2/igt@kms_chamelium@hdmi-aspect-ratio.html - shard-tglb: NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +4 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb3/igt@kms_chamelium@hdmi-aspect-ratio.html * igt@kms_chamelium@hdmi-mode-timings: - shard-snb: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +5 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-snb4/igt@kms_chamelium@hdmi-mode-timings.html - shard-kbl: NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +8 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-kbl2/igt@kms_chamelium@hdmi-mode-timings.html - shard-iclb: NOTRUN -> [SKIP][50] ([fdo#109284] / [fdo#111827]) +5 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb6/igt@kms_chamelium@hdmi-mode-timings.html - shard-hsw: NOTRUN -> [SKIP][51] ([fdo#109271] / [fdo#111827]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-hsw1/igt@kms_chamelium@hdmi-mode-timings.html * igt@kms_color@pipe-a-ctm-0-5: - shard-tglb: [PASS][52] -> [DMESG-WARN][53] ([i915#1149] / [i915#402]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-tglb6/igt@kms_color@pipe-a-ctm-0-5.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb7/igt@kms_color@pipe-a-ctm-0-5.html * igt@kms_content_protection@lic: - shard-kbl: NOTRUN -> [TIMEOUT][54] ([i915#1319]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-kbl4/igt@kms_content_protection@lic.html * igt@kms_content_protection@type1: - shard-iclb: NOTRUN -> [SKIP][55] ([fdo#109300] / [fdo#111066]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb8/igt@kms_content_protection@type1.html - shard-tglb: NOTRUN -> [SKIP][56] ([fdo#111828]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb8/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@pipe-a-cursor-128x128-random: - shard-tglb: [PASS][57] -> [FAIL][58] ([i915#2124]) +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-tglb6/igt@kms_cursor_crc@pipe-a-cursor-128x128-random.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-128x128-random.html * igt@kms_cursor_crc@pipe-a-cursor-128x128-rapid-movement: - shard-tglb: NOTRUN -> [DMESG-WARN][59] ([i915#402]) +2 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-128x128-rapid-movement.html * igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding: - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#109278] / [fdo#109279]) +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb5/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html - shard-tglb: NOTRUN -> [SKIP][61] ([fdo#109279]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb2/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html * igt@kms_cursor_edge_walk@pipe-d-128x128-bottom-edge: - shard-hsw: NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#533]) +2 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-hsw2/igt@kms_cursor_edge_walk@pipe-d-128x128-bottom-edge.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-tglb: [PASS][63] -> [FAIL][64] ([i915#2370] / [i915#533]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-tglb6/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@cursor-vs-flip-varying-size: - shard-tglb: [PASS][65] -> [FAIL][66] ([i915#2370]) +2 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-tglb3/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb7/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-iclb: NOTRUN -> [SKIP][67] ([fdo#109274] / [fdo#109278]) +2 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_flip@2x-nonexisting-fb: - shard-iclb: NOTRUN -> [SKIP][68] ([fdo#109274]) +3 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb6/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: [PASS][69] -> [DMESG-WARN][70] ([i915#180]) +2 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip@flip-vs-wf_vblank-interruptible@a-edp1: - shard-tglb: [PASS][71] -> [FAIL][72] ([i915#2122]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-tglb7/igt@kms_flip@flip-vs-wf_vblank-interruptible@a-edp1.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb2/igt@kms_flip@flip-vs-wf_vblank-interruptible@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs: - shard-kbl: NOTRUN -> [FAIL][73] ([i915#2641]) +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-kbl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-glk: NOTRUN -> [FAIL][74] ([i915#2628]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-glk4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile: - shard-apl: NOTRUN -> [FAIL][75] ([i915#2641]) +1 similar issue [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-apl1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [FAIL][76] ([i915#2546]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-snb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-snb: NOTRUN -> [SKIP][77] ([fdo#109271]) +88 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-glk: NOTRUN -> [SKIP][78] ([fdo#109271]) +46 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-glk1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html - shard-tglb: NOTRUN -> [DMESG-FAIL][79] ([i915#402]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render: - shard-tglb: [PASS][80] -> [DMESG-FAIL][81] ([i915#402]) +4 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-iclb: NOTRUN -> [SKIP][82] ([fdo#109280]) +11 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-tglb: [PASS][83] -> [DMESG-WARN][84] ([i915#402]) +45 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-tglb2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw: - shard-apl: NOTRUN -> [SKIP][85] ([fdo#109271]) +77 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-apl4/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-tglb: NOTRUN -> [SKIP][86] ([fdo#111825]) +19 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_hdmi_inject@inject-audio: - shard-tglb: [PASS][87] -> [SKIP][88] ([i915#433]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-tglb3/igt@kms_hdmi_inject@inject-audio.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb3/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@static-swap: - shard-tglb: NOTRUN -> [SKIP][89] ([i915#1187]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb6/igt@kms_hdr@static-swap.html * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d: - shard-glk: NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#533]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-glk8/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html - shard-apl: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#533]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-apl8/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html - shard-kbl: NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#533]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-kbl7/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html * igt@kms_plane_alpha_blend@pipe-a-alpha-7efc: - shard-apl: NOTRUN -> [FAIL][93] ([fdo#108145] / [i915#265]) +2 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][94] ([fdo#108145] / [i915#265]) +1 similar issue [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-glk7/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max.html * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb: - shard-kbl: NOTRUN -> [FAIL][95] ([fdo#108145] / [i915#265]) +1 similar issue [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html * igt@kms_plane_lowres@pipe-d-tiling-y: - shard-tglb: [PASS][96] -> [INCOMPLETE][97] ([i915#2473]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-tglb1/igt@kms_plane_lowres@pipe-d-tiling-y.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb8/igt@kms_plane_lowres@pipe-d-tiling-y.html * igt@kms_plane_multiple@atomic-pipe-c-tiling-yf: - shard-tglb: NOTRUN -> [SKIP][98] ([fdo#111615]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb2/igt@kms_plane_multiple@atomic-pipe-c-tiling-yf.html * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-scaler-with-clipping-clamping: - shard-iclb: [PASS][99] -> [DMESG-WARN][100] ([i915#1226]) +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-iclb1/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-scaler-with-clipping-clamping.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-scaler-with-clipping-clamping.html * igt@kms_prime@basic-crc@first-to-second: - shard-iclb: NOTRUN -> [SKIP][101] ([i915#1836]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb7/igt@kms_prime@basic-crc@first-to-second.html - shard-tglb: NOTRUN -> [SKIP][102] ([i915#1836]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb2/igt@kms_prime@basic-crc@first-to-second.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4: - shard-apl: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#658]) +2 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-apl3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html - shard-iclb: NOTRUN -> [SKIP][104] ([i915#658]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html * igt@kms_psr2_su@page_flip: - shard-glk: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#658]) +1 similar issue [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-glk8/igt@kms_psr2_su@page_flip.html - shard-iclb: NOTRUN -> [SKIP][106] ([fdo#109642] / [fdo#111068] / [i915#658]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb3/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_cursor_mmap_gtt: - shard-hsw: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#1072]) +1 similar issue [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-hsw8/igt@kms_psr@psr2_cursor_mmap_gtt.html - shard-iclb: NOTRUN -> [SKIP][108] ([fdo#109441]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb5/igt@kms_psr@psr2_cursor_mmap_gtt.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-iclb: [PASS][109] -> [SKIP][110] ([fdo#109441]) +1 similar issue [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb3/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_universal_plane@universal-plane-gen9-features-pipe-b: - shard-tglb: [PASS][111] -> [DMESG-WARN][112] ([i915#1982] / [i915#402]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-tglb1/igt@kms_universal_plane@universal-plane-gen9-features-pipe-b.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb3/igt@kms_universal_plane@universal-plane-gen9-features-pipe-b.html * igt@kms_writeback@writeback-fb-id: - shard-apl: NOTRUN -> [SKIP][113] ([fdo#109271] / [i915#2437]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-apl4/igt@kms_writeback@writeback-fb-id.html * igt@nouveau_crc@pipe-a-ctx-flip-detection: - shard-tglb: NOTRUN -> [SKIP][114] ([i915#2530]) +1 similar issue [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb3/igt@nouveau_crc@pipe-a-ctx-flip-detection.html * igt@nouveau_crc@pipe-b-source-outp-inactive: - shard-iclb: NOTRUN -> [SKIP][115] ([i915#2530]) +1 similar issue [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb6/igt@nouveau_crc@pipe-b-source-outp-inactive.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-tglb: NOTRUN -> [SKIP][116] ([fdo#109289]) +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb7/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@prime_nv_api@i915_nv_import_twice: - shard-iclb: NOTRUN -> [SKIP][117] ([fdo#109291]) +1 similar issue [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb3/igt@prime_nv_api@i915_nv_import_twice.html * igt@prime_nv_test@nv_write_i915_gtt_mmap_read: - shard-tglb: NOTRUN -> [SKIP][118] ([fdo#109291]) +2 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb5/igt@prime_nv_test@nv_write_i915_gtt_mmap_read.html * igt@sysfs_clients@split-10@bcs0: - shard-glk: [PASS][119] -> [SKIP][120] ([fdo#109271] / [i915#3026]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-glk2/igt@sysfs_clients@split-10@bcs0.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-glk7/igt@sysfs_clients@split-10@bcs0.html #### Possible fixes #### * igt@feature_discovery@psr2: - shard-iclb: [SKIP][121] ([i915#658]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-iclb1/igt@feature_discovery@psr2.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb2/igt@feature_discovery@psr2.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-kbl: [FAIL][123] ([i915#2842]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-kbl2/igt@gem_exec_fair@basic-none-rrul@rcs0.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-kbl6/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none@vecs0: - shard-apl: [FAIL][125] ([i915#2842]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-apl7/igt@gem_exec_fair@basic-none@vecs0.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-apl4/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [FAIL][127] ([i915#2842]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-tglb3/igt@gem_exec_fair@basic-pace-share@rcs0.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_whisper@basic-fds: - shard-glk: [DMESG-WARN][129] ([i915#118] / [i915#95]) -> [PASS][130] +1 similar issue [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-glk6/igt@gem_exec_whisper@basic-fds.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-glk6/igt@gem_exec_whisper@basic-fds.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [INCOMPLETE][131] ([i915#2880]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-iclb: [INCOMPLETE][133] ([i915#189]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-iclb4/igt@i915_pm_rpm@system-suspend-execbuf.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-iclb1/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@kms_cursor_crc@pipe-b-cursor-suspend: - shard-kbl: [DMESG-WARN][135] ([i915#180]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-kbl7/igt@kms_cursor_crc@pipe-b-cursor-suspend.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1: - shard-tglb: [FAIL][137] ([i915#2598]) -> [PASS][138] [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5991/shard-tglb2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/shard-tglb3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html * igt@kms_flip@flip-vs-expired-v == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5482/index.html [-- Attachment #1.2: Type: text/html, Size: 33633 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2021-02-05 7:34 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-02-04 14:08 [igt-dev] [PATCH i-g-t] tests/kms_psr2_sf: Enable selective fetch José Roberto de Souza 2021-02-04 15:11 ` Petri Latvala 2021-02-04 15:17 ` Souza, Jose 2021-02-05 7:34 ` Petri Latvala 2021-02-04 15:48 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2021-02-04 21:14 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).