[Intel-gfx] [i-g-t PATCH] tests: don't skip kms_panel_fitting when non-eDP connected
Marius Vlad
marius.c.vlad at intel.com
Wed Mar 23 13:44:15 UTC 2016
Is there a reason why other connectors do not support panel fitting?
Removed the check and using a HDMI connector the test passes...
On Wed, Mar 23, 2016 at 02:19:25PM +0200, Jani Nikula wrote:
> kms_panel_fitting skips if there's a non-eDP display connected. Fix it.
>
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93012
> Signed-off-by: Jani Nikula <jani.nikula at intel.com>
> ---
> tests/kms_panel_fitting.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/tests/kms_panel_fitting.c b/tests/kms_panel_fitting.c
> index 829d9cdd0631..1f9412f6e2d5 100644
> --- a/tests/kms_panel_fitting.c
> +++ b/tests/kms_panel_fitting.c
> @@ -150,8 +150,9 @@ static void test_panel_fitting(data_t *d)
> for_each_connected_output(display, output) {
> drmModeModeInfo *mode, native_mode;
>
> - igt_require(output->config.connector->connector_type ==
> - DRM_MODE_CONNECTOR_eDP);
> + if (output->config.connector->connector_type !=
> + DRM_MODE_CONNECTOR_eDP)
> + continue;
>
> pipe = output->config.pipe;
> igt_output_set_pipe(output, pipe);
> --
> 2.1.4
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 473 bytes
Desc: Digital signature
URL: <https://lists.freedesktop.org/archives/intel-gfx/attachments/20160323/c590fccf/attachment.sig>
More information about the Intel-gfx
mailing list