* [igt-dev] [PATCH i-g-t v2] tests/kms_ccs: Select highest resolution
@ 2020-02-06 7:48 Mika Kahola
2020-02-06 8:34 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_ccs: Select highest resolution (rev2) Patchwork
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Mika Kahola @ 2020-02-06 7:48 UTC (permalink / raw)
To: igt-dev
In some cases we select resolution that is insufficient for testing
and we receive unnecessary skips on CI. Let's loop through all available
modes and select the higest one when running the tests.
v2: Pointer to drmModeModeInfo (Imre)
Set default to back to preferred mode (Imre)
Search mode only in cases with misaligned or small aux strides
test flags (Imre)
Fix requirement to from vertical to horizontal (Imre)
Signed-off-by: Mika Kahola <mika.kahola@intel.com>
---
tests/kms_ccs.c | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/tests/kms_ccs.c b/tests/kms_ccs.c
index 2259a4f1..f1f6cc6b 100644
--- a/tests/kms_ccs.c
+++ b/tests/kms_ccs.c
@@ -276,6 +276,22 @@ static igt_plane_t *compatible_main_plane(data_t *data)
return igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY);
}
+static drmModeModeInfo *get_mode(drmModeModeInfo *preferred_mode,
+ igt_output_t *output)
+{
+ drmModeModeInfo *mode, *tmp;
+ int i;
+
+ mode = preferred_mode;
+ for (i = 0; i < output->config.connector->count_modes; i++) {
+ tmp = &output->config.connector->modes[i];
+ if (tmp->hdisplay > mode->hdisplay)
+ mode = tmp;
+ }
+
+ return mode;
+}
+
static bool try_config(data_t *data, enum test_fb_flags fb_flags,
igt_crc_t *crc)
{
@@ -298,6 +314,12 @@ static bool try_config(data_t *data, enum test_fb_flags fb_flags,
data->ccs_modifier))
return false;
+ if ((fb_flags & FB_MISALIGN_AUX_STRIDE) ||
+ (fb_flags & FB_SMALL_AUX_STRIDE)) {
+ drm_mode = get_mode(drm_mode, data->output);
+ igt_output_override_mode(data->output, drm_mode);
+ }
+
if (data->plane && fb_flags & FB_COMPRESSED) {
if (!igt_plane_has_format_mod(data->plane, data->format,
data->ccs_modifier))
--
2.17.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 5+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_ccs: Select highest resolution (rev2) 2020-02-06 7:48 [igt-dev] [PATCH i-g-t v2] tests/kms_ccs: Select highest resolution Mika Kahola @ 2020-02-06 8:34 ` Patchwork 2020-02-06 13:30 ` [igt-dev] [PATCH i-g-t v2] tests/kms_ccs: Select highest resolution Imre Deak 2020-02-09 0:13 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_ccs: Select highest resolution (rev2) Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2020-02-06 8:34 UTC (permalink / raw) To: Mika Kahola; +Cc: igt-dev == Series Details == Series: tests/kms_ccs: Select highest resolution (rev2) URL : https://patchwork.freedesktop.org/series/72667/ State : success == Summary == CI Bug Log - changes from CI_DRM_7874 -> IGTPW_4107 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/index.html Known issues ------------ Here are the changes found in IGTPW_4107 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_close_race@basic-threads: - fi-hsw-peppy: [PASS][1] -> [INCOMPLETE][2] ([i915#694] / [i915#816]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/fi-hsw-peppy/igt@gem_close_race@basic-threads.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/fi-hsw-peppy/igt@gem_close_race@basic-threads.html - fi-byt-j1900: [PASS][3] -> [INCOMPLETE][4] ([i915#45]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/fi-byt-j1900/igt@gem_close_race@basic-threads.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/fi-byt-j1900/igt@gem_close_race@basic-threads.html * igt@gem_exec_suspend@basic-s0: - fi-cml-s: [PASS][5] -> [FAIL][6] ([fdo#103375]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/fi-cml-s/igt@gem_exec_suspend@basic-s0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/fi-cml-s/igt@gem_exec_suspend@basic-s0.html * igt@i915_selftest@live_blt: - fi-hsw-4770r: [PASS][7] -> [DMESG-FAIL][8] ([i915#563]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/fi-hsw-4770r/igt@i915_selftest@live_blt.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/fi-hsw-4770r/igt@i915_selftest@live_blt.html - fi-bsw-n3050: [PASS][9] -> [INCOMPLETE][10] ([i915#392]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/fi-bsw-n3050/igt@i915_selftest@live_blt.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/fi-bsw-n3050/igt@i915_selftest@live_blt.html - fi-hsw-4770: [PASS][11] -> [DMESG-FAIL][12] ([i915#725]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/fi-hsw-4770/igt@i915_selftest@live_blt.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/fi-hsw-4770/igt@i915_selftest@live_blt.html #### Possible fixes #### * igt@i915_selftest@live_gem_contexts: - fi-byt-n2820: [DMESG-FAIL][13] ([i915#722]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/fi-byt-n2820/igt@i915_selftest@live_gem_contexts.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/fi-byt-n2820/igt@i915_selftest@live_gem_contexts.html * igt@kms_chamelium@hdmi-crc-fast: - fi-icl-u2: [FAIL][15] ([fdo#109635] / [i915#217]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/fi-icl-u2/igt@kms_chamelium@hdmi-crc-fast.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/fi-icl-u2/igt@kms_chamelium@hdmi-crc-fast.html #### Warnings #### * igt@gem_exec_parallel@contexts: - fi-byt-n2820: [TIMEOUT][17] ([fdo#112271] / [i915#1084]) -> [FAIL][18] ([i915#694]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/fi-byt-n2820/igt@gem_exec_parallel@contexts.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/fi-byt-n2820/igt@gem_exec_parallel@contexts.html * igt@gem_exec_parallel@fds: - fi-byt-n2820: [FAIL][19] ([i915#694]) -> [TIMEOUT][20] ([fdo#112271] / [i915#1084]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/fi-byt-n2820/igt@gem_exec_parallel@fds.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/fi-byt-n2820/igt@gem_exec_parallel@fds.html * igt@gem_exec_suspend@basic-s3: - fi-cml-s: [INCOMPLETE][21] ([i915#1078] / [i915#283]) -> [FAIL][22] ([fdo#103375]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/fi-cml-s/igt@gem_exec_suspend@basic-s3.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/fi-cml-s/igt@gem_exec_suspend@basic-s3.html [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109635]: https://bugs.freedesktop.org/show_bug.cgi?id=109635 [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271 [i915#1078]: https://gitlab.freedesktop.org/drm/intel/issues/1078 [i915#1084]: https://gitlab.freedesktop.org/drm/intel/issues/1084 [i915#217]: https://gitlab.freedesktop.org/drm/intel/issues/217 [i915#283]: https://gitlab.freedesktop.org/drm/intel/issues/283 [i915#392]: https://gitlab.freedesktop.org/drm/intel/issues/392 [i915#45]: https://gitlab.freedesktop.org/drm/intel/issues/45 [i915#563]: https://gitlab.freedesktop.org/drm/intel/issues/563 [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694 [i915#722]: https://gitlab.freedesktop.org/drm/intel/issues/722 [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725 [i915#816]: https://gitlab.freedesktop.org/drm/intel/issues/816 Participating hosts (51 -> 38) ------------------------------ Missing (13): fi-kbl-soraka fi-bdw-samus fi-byt-squawks fi-bsw-cyan fi-bwr-2160 fi-kbl-7500u fi-whl-u fi-gdg-551 fi-bsw-kefka fi-kbl-7560u fi-tgl-y fi-byt-clapper fi-skl-6600u Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5420 -> IGTPW_4107 CI-20190529: 20190529 CI_DRM_7874: 3f234d1ab91ec2321312150116c1285bcb0a260b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4107: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/index.html IGT_5420: 497e13d2b4c1053bcd01bd15739fef55e7694a03 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2] tests/kms_ccs: Select highest resolution 2020-02-06 7:48 [igt-dev] [PATCH i-g-t v2] tests/kms_ccs: Select highest resolution Mika Kahola 2020-02-06 8:34 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_ccs: Select highest resolution (rev2) Patchwork @ 2020-02-06 13:30 ` Imre Deak 2020-02-06 14:05 ` Kahola, Mika 2020-02-09 0:13 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_ccs: Select highest resolution (rev2) Patchwork 2 siblings, 1 reply; 5+ messages in thread From: Imre Deak @ 2020-02-06 13:30 UTC (permalink / raw) To: Mika Kahola; +Cc: igt-dev On Thu, Feb 06, 2020 at 09:48:06AM +0200, Mika Kahola wrote: > In some cases we select resolution that is insufficient for testing > and we receive unnecessary skips on CI. Let's loop through all available > modes and select the higest one when running the tests. > > v2: Pointer to drmModeModeInfo (Imre) > Set default to back to preferred mode (Imre) > Search mode only in cases with misaligned or small aux strides > test flags (Imre) > Fix requirement to from vertical to horizontal (Imre) > > Signed-off-by: Mika Kahola <mika.kahola@intel.com> > --- > tests/kms_ccs.c | 22 ++++++++++++++++++++++ > 1 file changed, 22 insertions(+) > > diff --git a/tests/kms_ccs.c b/tests/kms_ccs.c > index 2259a4f1..f1f6cc6b 100644 > --- a/tests/kms_ccs.c > +++ b/tests/kms_ccs.c > @@ -276,6 +276,22 @@ static igt_plane_t *compatible_main_plane(data_t *data) > return igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY); > } > > +static drmModeModeInfo *get_mode(drmModeModeInfo *preferred_mode, Maybe get_wide_mode() or similar to better describe what's this node is used for? > + igt_output_t *output) > +{ > + drmModeModeInfo *mode, *tmp; > + int i; > + > + mode = preferred_mode; > + for (i = 0; i < output->config.connector->count_modes; i++) { if (mode->hdisplay > 1024) break; > + tmp = &output->config.connector->modes[i]; > + if (tmp->hdisplay > mode->hdisplay) > + mode = tmp; > + } > + > + return mode; > +} > + > static bool try_config(data_t *data, enum test_fb_flags fb_flags, > igt_crc_t *crc) > { > @@ -298,6 +314,12 @@ static bool try_config(data_t *data, enum test_fb_flags fb_flags, > data->ccs_modifier)) > return false; > > + if ((fb_flags & FB_MISALIGN_AUX_STRIDE) || > + (fb_flags & FB_SMALL_AUX_STRIDE)) { > + drm_mode = get_mode(drm_mode, data->output); > + igt_output_override_mode(data->output, drm_mode); > + } > + > if (data->plane && fb_flags & FB_COMPRESSED) { > if (!igt_plane_has_format_mod(data->plane, data->format, > data->ccs_modifier)) At the end of try_config() we need to restore the default mode: igt_output_override_mode(output, NULL); With the above: Reviewed-by: Imre Deak <imre.deak@intel.com> > -- > 2.17.1 > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2] tests/kms_ccs: Select highest resolution 2020-02-06 13:30 ` [igt-dev] [PATCH i-g-t v2] tests/kms_ccs: Select highest resolution Imre Deak @ 2020-02-06 14:05 ` Kahola, Mika 0 siblings, 0 replies; 5+ messages in thread From: Kahola, Mika @ 2020-02-06 14:05 UTC (permalink / raw) To: Deak, Imre; +Cc: igt-dev@lists.freedesktop.org On Thu, 2020-02-06 at 15:30 +0200, Imre Deak wrote: > On Thu, Feb 06, 2020 at 09:48:06AM +0200, Mika Kahola wrote: > > In some cases we select resolution that is insufficient for testing > > and we receive unnecessary skips on CI. Let's loop through all > > available > > modes and select the higest one when running the tests. > > > > v2: Pointer to drmModeModeInfo (Imre) > > Set default to back to preferred mode (Imre) > > Search mode only in cases with misaligned or small aux strides > > test flags (Imre) > > Fix requirement to from vertical to horizontal (Imre) > > > > Signed-off-by: Mika Kahola <mika.kahola@intel.com> > > --- > > tests/kms_ccs.c | 22 ++++++++++++++++++++++ > > 1 file changed, 22 insertions(+) > > > > diff --git a/tests/kms_ccs.c b/tests/kms_ccs.c > > index 2259a4f1..f1f6cc6b 100644 > > --- a/tests/kms_ccs.c > > +++ b/tests/kms_ccs.c > > @@ -276,6 +276,22 @@ static igt_plane_t > > *compatible_main_plane(data_t *data) > > return igt_output_get_plane_type(data->output, > > DRM_PLANE_TYPE_PRIMARY); > > } > > > > +static drmModeModeInfo *get_mode(drmModeModeInfo *preferred_mode, > > Maybe get_wide_mode() or similar to better describe what's this node > is > used for? > > > + igt_output_t *output) > > +{ > > + drmModeModeInfo *mode, *tmp; > > + int i; > > + > > + mode = preferred_mode; > > + for (i = 0; i < output->config.connector->count_modes; i++) { > > if (mode->hdisplay > 1024) > break; > > > + tmp = &output->config.connector->modes[i]; > > + if (tmp->hdisplay > mode->hdisplay) > > + mode = tmp; > > + } > > + > > + return mode; > > +} > > + > > static bool try_config(data_t *data, enum test_fb_flags fb_flags, > > igt_crc_t *crc) > > { > > @@ -298,6 +314,12 @@ static bool try_config(data_t *data, enum > > test_fb_flags fb_flags, > > data->ccs_modifier)) > > return false; > > > > + if ((fb_flags & FB_MISALIGN_AUX_STRIDE) || > > + (fb_flags & FB_SMALL_AUX_STRIDE)) { > > + drm_mode = get_mode(drm_mode, data->output); > > + igt_output_override_mode(data->output, drm_mode); > > + } > > + > > if (data->plane && fb_flags & FB_COMPRESSED) { > > if (!igt_plane_has_format_mod(data->plane, data- > > >format, > > data->ccs_modifier)) > > At the end of try_config() we need to restore the default mode: > igt_output_override_mode(output, NULL); > > With the above: > Reviewed-by: Imre Deak <imre.deak@intel.com> Pushed with the proposed changes. Thanks for the review! -Mika- > > > > -- > > 2.17.1 > > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_ccs: Select highest resolution (rev2) 2020-02-06 7:48 [igt-dev] [PATCH i-g-t v2] tests/kms_ccs: Select highest resolution Mika Kahola 2020-02-06 8:34 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_ccs: Select highest resolution (rev2) Patchwork 2020-02-06 13:30 ` [igt-dev] [PATCH i-g-t v2] tests/kms_ccs: Select highest resolution Imre Deak @ 2020-02-09 0:13 ` Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2020-02-09 0:13 UTC (permalink / raw) To: Kahola, Mika; +Cc: igt-dev == Series Details == Series: tests/kms_ccs: Select highest resolution (rev2) URL : https://patchwork.freedesktop.org/series/72667/ State : failure == Summary == CI Bug Log - changes from CI_DRM_7874_full -> IGTPW_4107_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_4107_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_4107_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_4107/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4107_full: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@linear-16bpp-rotate-0: - shard-tglb: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-tglb2/igt@kms_big_fb@linear-16bpp-rotate-0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-tglb2/igt@kms_big_fb@linear-16bpp-rotate-0.html * igt@kms_fbcon_fbt@psr-suspend: - shard-iclb: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-iclb5/igt@kms_fbcon_fbt@psr-suspend.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-iclb3/igt@kms_fbcon_fbt@psr-suspend.html Known issues ------------ Here are the changes found in IGTPW_4107_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@vcs0-s3: - shard-iclb: [PASS][5] -> [INCOMPLETE][6] ([fdo#109100]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-iclb2/igt@gem_ctx_isolation@vcs0-s3.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-iclb1/igt@gem_ctx_isolation@vcs0-s3.html * igt@gem_exec_balancer@smoke: - shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#110854]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-iclb2/igt@gem_exec_balancer@smoke.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-iclb6/igt@gem_exec_balancer@smoke.html * igt@gem_exec_schedule@pi-shared-iova-bsd: - shard-iclb: [PASS][9] -> [SKIP][10] ([i915#677]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-iclb8/igt@gem_exec_schedule@pi-shared-iova-bsd.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-iclb2/igt@gem_exec_schedule@pi-shared-iova-bsd.html * igt@gem_exec_schedule@pi-shared-iova-bsd2: - shard-iclb: [PASS][11] -> [SKIP][12] ([fdo#109276]) +11 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-iclb2/igt@gem_exec_schedule@pi-shared-iova-bsd2.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-iclb7/igt@gem_exec_schedule@pi-shared-iova-bsd2.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [PASS][13] -> [SKIP][14] ([fdo#112146]) +4 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-iclb4/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-glk: [PASS][15] -> [FAIL][16] ([i915#644]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-glk8/igt@gem_ppgtt@flink-and-close-vma-leak.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-glk7/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@gen7_exec_parse@basic-allocation: - shard-hsw: [PASS][17] -> [FAIL][18] ([i915#694]) +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-hsw8/igt@gen7_exec_parse@basic-allocation.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-hsw7/igt@gen7_exec_parse@basic-allocation.html * igt@i915_pm_dc@dc6-dpms: - shard-iclb: [PASS][19] -> [FAIL][20] ([i915#454]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-iclb5/igt@i915_pm_dc@dc6-dpms.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html * igt@i915_selftest@live_blt: - shard-hsw: [PASS][21] -> [DMESG-FAIL][22] ([i915#770]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-hsw5/igt@i915_selftest@live_blt.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-hsw5/igt@i915_selftest@live_blt.html * igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen: - shard-kbl: [PASS][23] -> [FAIL][24] ([i915#54]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html - shard-apl: [PASS][25] -> [FAIL][26] ([i915#54]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-apl3/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-apl4/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html - shard-glk: [PASS][27] -> [FAIL][28] ([i915#54]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-glk9/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-glk6/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]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html * igt@kms_cursor_edge_walk@pipe-a-64x64-right-edge: - shard-tglb: [PASS][31] -> [FAIL][32] ([i915#70]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-tglb7/igt@kms_cursor_edge_walk@pipe-a-64x64-right-edge.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-tglb6/igt@kms_cursor_edge_walk@pipe-a-64x64-right-edge.html * igt@kms_draw_crc@draw-method-xrgb2101010-render-untiled: - shard-tglb: [PASS][33] -> [FAIL][34] ([i915#559]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-tglb2/igt@kms_draw_crc@draw-method-xrgb2101010-render-untiled.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-tglb2/igt@kms_draw_crc@draw-method-xrgb2101010-render-untiled.html * igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-ytiled: - shard-tglb: [PASS][35] -> [DMESG-FAIL][36] ([i915#402]) +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-tglb3/igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-ytiled.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-tglb5/igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-ytiled.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-glk: [PASS][37] -> [FAIL][38] ([i915#79]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-apl: [PASS][39] -> [FAIL][40] ([i915#79]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-rte: - shard-snb: [PASS][41] -> [DMESG-WARN][42] ([i915#478]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-snb5/igt@kms_frontbuffer_tracking@fbc-1p-rte.html * igt@kms_psr2_su@page_flip: - shard-iclb: [PASS][43] -> [SKIP][44] ([fdo#109642] / [fdo#111068]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-iclb2/igt@kms_psr2_su@page_flip.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-iclb5/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-iclb: [PASS][45] -> [SKIP][46] ([fdo#109441]) +2 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-iclb4/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_rotation_crc@primary-rotation-270: - shard-tglb: [PASS][47] -> [FAIL][48] ([i915#65]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-tglb8/igt@kms_rotation_crc@primary-rotation-270.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-tglb6/igt@kms_rotation_crc@primary-rotation-270.html * igt@perf_pmu@busy-vcs1: - shard-iclb: [PASS][49] -> [SKIP][50] ([fdo#112080]) +11 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-iclb2/igt@perf_pmu@busy-vcs1.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-iclb6/igt@perf_pmu@busy-vcs1.html #### Possible fixes #### * igt@gem_blits@basic: - shard-kbl: [DMESG-WARN][51] ([i915#836]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-kbl2/igt@gem_blits@basic.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-kbl3/igt@gem_blits@basic.html * igt@gem_busy@busy-vcs1: - shard-iclb: [SKIP][53] ([fdo#112080]) -> [PASS][54] +8 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-iclb7/igt@gem_busy@busy-vcs1.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-iclb4/igt@gem_busy@busy-vcs1.html * igt@gem_exec_schedule@independent-bsd2: - shard-iclb: [SKIP][55] ([fdo#109276]) -> [PASS][56] +17 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-iclb3/igt@gem_exec_schedule@independent-bsd2.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-iclb2/igt@gem_exec_schedule@independent-bsd2.html * igt@gem_exec_schedule@preemptive-hang-bsd: - shard-iclb: [SKIP][57] ([fdo#112146]) -> [PASS][58] +2 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-iclb2/igt@gem_exec_schedule@preemptive-hang-bsd.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-iclb5/igt@gem_exec_schedule@preemptive-hang-bsd.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-hsw: [FAIL][59] ([i915#694]) -> [PASS][60] +2 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-hsw5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-hsw6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_userptr_blits@dmabuf-sync: - shard-snb: [DMESG-WARN][61] ([fdo#111870] / [i915#478]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-snb6/igt@gem_userptr_blits@dmabuf-sync.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-snb5/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_workarounds@suspend-resume-fd: - shard-kbl: [DMESG-WARN][63] ([i915#180]) -> [PASS][64] +4 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-kbl7/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_pm_rps@waitboost: - shard-iclb: [FAIL][65] ([i915#413]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-iclb7/igt@i915_pm_rps@waitboost.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-iclb3/igt@i915_pm_rps@waitboost.html * igt@kms_big_fb@x-tiled-8bpp-rotate-0: - shard-tglb: [FAIL][67] ([i915#1172]) -> [PASS][68] +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-tglb6/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-tglb5/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html * igt@kms_big_fb@y-tiled-64bpp-rotate-180: - shard-iclb: [SKIP][69] ([i915#1140]) -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-iclb5/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-iclb5/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html * igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen: - shard-apl: [FAIL][71] ([i915#54]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-apl8/igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-apl2/igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen.html * igt@kms_draw_crc@draw-method-rgb565-render-xtiled: - shard-snb: [SKIP][73] ([fdo#109271]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-snb4/igt@kms_draw_crc@draw-method-rgb565-render-xtiled.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-snb5/igt@kms_draw_crc@draw-method-rgb565-render-xtiled.html * igt@kms_draw_crc@draw-method-xrgb2101010-pwrite-ytiled: - shard-tglb: [FAIL][75] ([i915#559]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-tglb2/igt@kms_draw_crc@draw-method-xrgb2101010-pwrite-ytiled.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-tglb5/igt@kms_draw_crc@draw-method-xrgb2101010-pwrite-ytiled.html * igt@kms_draw_crc@draw-method-xrgb8888-mmap-wc-xtiled: - shard-tglb: [DMESG-FAIL][77] ([i915#402]) -> [PASS][78] +2 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-tglb1/igt@kms_draw_crc@draw-method-xrgb8888-mmap-wc-xtiled.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-tglb3/igt@kms_draw_crc@draw-method-xrgb8888-mmap-wc-xtiled.html * igt@kms_flip@flip-vs-expired-vblank: - shard-glk: [FAIL][79] ([i915#79]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-glk6/igt@kms_flip@flip-vs-expired-vblank.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-glk9/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_psr@psr2_primary_page_flip: - shard-iclb: [SKIP][81] ([fdo#109441]) -> [PASS][82] +2 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-iclb6/igt@kms_psr@psr2_primary_page_flip.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_vblank@pipe-c-query-forked-hang: - shard-hsw: [INCOMPLETE][83] ([CI#80] / [i915#61]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-hsw8/igt@kms_vblank@pipe-c-query-forked-hang.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-hsw2/igt@kms_vblank@pipe-c-query-forked-hang.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [SKIP][85] ([fdo#112080]) -> [FAIL][86] ([IGT#28]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-iclb5/igt@gem_ctx_isolation@vcs1-nonpriv.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-iclb2/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@gem_tiled_blits@normal: - shard-hsw: [FAIL][87] ([i915#818]) -> [FAIL][88] ([i915#694]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-hsw2/igt@gem_tiled_blits@normal.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-hsw1/igt@gem_tiled_blits@normal.html * igt@i915_pm_dc@dc6-dpms: - shard-tglb: [SKIP][89] ([i915#468]) -> [FAIL][90] ([i915#454]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-tglb1/igt@i915_pm_dc@dc6-dpms.html * igt@runner@aborted: - shard-snb: ([FAIL][91], [FAIL][92], [FAIL][93], [FAIL][94], [FAIL][95], [FAIL][96], [FAIL][97]) ([fdo#111870] / [i915#1077]) -> ([FAIL][98], [FAIL][99], [FAIL][100], [FAIL][101], [FAIL][102], [FAIL][103], [FAIL][104], [FAIL][105], [FAIL][106]) ([fdo#111870] / [i915#1077] / [i915#698]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-snb6/igt@runner@aborted.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-snb6/igt@runner@aborted.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-snb6/igt@runner@aborted.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-snb4/igt@runner@aborted.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-snb4/igt@runner@aborted.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-snb6/igt@runner@aborted.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7874/shard-snb4/igt@runner@aborted.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-snb5/igt@runner@aborted.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-snb4/igt@runner@aborted.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-snb2/igt@runner@aborted.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-snb4/igt@runner@aborted.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-snb6/igt@runner@aborted.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-snb2/igt@runner@aborted.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-snb5/igt@runner@aborted.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-snb2/igt@runner@aborted.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/shard-snb5/igt@runner@aborted.html [CI#80]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/80 [IGT#28]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/28 [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100 [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#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 [i915#1077]: https://gitlab.freedesktop.org/drm/intel/issues/1077 [i915#1140]: https://gitlab.freedesktop.org/drm/intel/issues/1140 [i915#1172]: https://gitlab.freedesktop.org/drm/intel/issues/1172 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 [i915#413]: https://gitlab.freedesktop.org/drm/intel/issues/413 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468 [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478 [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 [i915#559]: https://gitlab.freedesktop.org/drm/intel/issues/559 [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61 [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644 [i915#65]: https://gitlab.freedesktop.org/drm/intel/issues/65 [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677 [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694 [i915#698]: https://gitlab.freedesktop.org/drm/intel/issues/698 [i915#70]: https://gitlab.freedesktop.org/drm/intel/issues/70 [i915#770]: https://gitlab.freedesktop.org/drm/intel/issues/770 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#818]: https://gitlab.freedesktop.org/drm/intel/issues/818 [i915#836]: https://gitlab.freedesktop.org/drm/intel/issues/836 Participating hosts (10 -> 8) ------------------------------ Missing (2): pig-skl-6260u pig-glk-j5005 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5420 -> IGTPW_4107 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_7874: 3f234d1ab91ec2321312150116c1285bcb0a260b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4107: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4107/index.html IGT_5420: 497e13d2b4c1053bcd01bd15739fef55e7694a03 @ 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_4107/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-02-09 0:13 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-02-06 7:48 [igt-dev] [PATCH i-g-t v2] tests/kms_ccs: Select highest resolution Mika Kahola 2020-02-06 8:34 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_ccs: Select highest resolution (rev2) Patchwork 2020-02-06 13:30 ` [igt-dev] [PATCH i-g-t v2] tests/kms_ccs: Select highest resolution Imre Deak 2020-02-06 14:05 ` Kahola, Mika 2020-02-09 0:13 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_ccs: Select highest resolution (rev2) Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox