From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Arthur Grillo <arthurgrillo@riseup.net>
Cc: carlos.craveiro@usp.br, tales.aparecida@gmail.com,
dlatypov@google.com, javierm@redhat.com,
dri-devel@lists.freedesktop.org, mairacanal@riseup.net,
maxime@cerno.tech, andrealmeid@riseup.net, airled@gmail.com,
matheus.vieira.g@usp.br
Subject: Re: [PATCH 4/5] drm/tests: Test drm_rect_rotate()
Date: Wed, 22 Mar 2023 16:32:37 +0200 [thread overview]
Message-ID: <ZBsRhcQifOj0hETj@intel.com> (raw)
In-Reply-To: <20230322140701.69852-5-arthurgrillo@riseup.net>
On Wed, Mar 22, 2023 at 11:07:00AM -0300, Arthur Grillo wrote:
> Insert test for the drm_rect_rotate() function, create test cases
> for all the rotation modes.
>
> Signed-off-by: Arthur Grillo <arthurgrillo@riseup.net>
> ---
> drivers/gpu/drm/tests/drm_rect_test.c | 74 +++++++++++++++++++++++++++
> 1 file changed, 74 insertions(+)
>
> diff --git a/drivers/gpu/drm/tests/drm_rect_test.c b/drivers/gpu/drm/tests/drm_rect_test.c
> index 0f7736073390..46139e796f3f 100644
> --- a/drivers/gpu/drm/tests/drm_rect_test.c
> +++ b/drivers/gpu/drm/tests/drm_rect_test.c
> @@ -8,6 +8,7 @@
> #include <kunit/test.h>
>
> #include <drm/drm_rect.h>
> +#include <drm/drm_mode.h>
>
> #include <linux/errno.h>
>
> @@ -333,6 +334,78 @@ static void drm_test_rect_calc_vscale_negative_args(struct kunit *test)
> KUNIT_EXPECT_EQ(test, scaling_factor, -EINVAL);
> }
>
> +struct drm_rect_rotate_case {
> + const char *name;
> + unsigned int rotation;
> + struct drm_rect rect;
> + int width, height;
> + struct drm_rect expected;
> +};
> +
> +static const struct drm_rect_rotate_case drm_rect_rotate_cases[] = {
> + {
> + .name = "reflect x",
> + .rotation = DRM_MODE_REFLECT_X,
> + .rect = DRM_RECT_INIT(0, 0, 5, 5),
> + .width = 0, .height = 0,
These zero width/height don't really make any sense.
> + .expected = DRM_RECT_INIT(-5, 0, 5, 5),
> + },
> + {
> + .name = "reflect y",
> + .rotation = DRM_MODE_REFLECT_Y,
> + .rect = DRM_RECT_INIT(0, 0, 5, 5),
> + .width = 0, .height = 0,
> + .expected = DRM_RECT_INIT(0, -5, 5, 5),
> + },
> + {
> + .name = "rotate 0",
> + .rotation = DRM_MODE_ROTATE_0,
> + .rect = DRM_RECT_INIT(0, 0, 5, 5),
> + .width = 0, .height = 0,
> + .expected = DRM_RECT_INIT(0, 0, 5, 5),
> + },
> + {
> + .name = "rotate 90",
> + .rotation = DRM_MODE_ROTATE_90,
> + .rect = DRM_RECT_INIT(0, 0, 5, 10),
> + .width = 0, .height = 0,
> + .expected = DRM_RECT_INIT(0, -5, 10, 5),
> + },
> + {
> + .name = "rotate 180",
> + .rotation = DRM_MODE_ROTATE_180,
> + .rect = DRM_RECT_INIT(0, 0, 5, 10),
> + .width = 0, .height = 0,
> + .expected = DRM_RECT_INIT(-5, -10, 5, 10),
> + },
> + {
> + .name = "rotate 270",
> + .rotation = DRM_MODE_ROTATE_270,
> + .rect = DRM_RECT_INIT(0, 0, 5, 10),
> + .width = 0, .height = 0,
> + .expected = DRM_RECT_INIT(-10, 0, 10, 5),
> + },
> +};
> +
> +static void drm_rect_case_desc(const struct drm_rect_rotate_case *t, char *desc)
> +{
> + strscpy(desc, t->name, KUNIT_PARAM_DESC_SIZE);
> +}
> +
> +KUNIT_ARRAY_PARAM(drm_rect_rotate, drm_rect_rotate_cases, drm_rect_case_desc);
> +
> +static void drm_test_rect_rotate(struct kunit *test)
> +{
> + const struct drm_rect_rotate_case *params = test->param_value;
> + struct drm_rect r;
> +
> + memcpy(&r, ¶ms->rect, sizeof(struct drm_rect));
r = params->rect;
> +
> + drm_rect_rotate(&r, params->width, params->height, params->rotation);
> +
> + drm_rect_compare(test, &r, ¶ms->expected);
> +}
> +
> static struct kunit_case drm_rect_tests[] = {
> KUNIT_CASE(drm_test_rect_clip_scaled_div_by_zero),
> KUNIT_CASE(drm_test_rect_clip_scaled_not_clipped),
> @@ -345,6 +418,7 @@ static struct kunit_case drm_rect_tests[] = {
> KUNIT_CASE(drm_test_rect_calc_vscale),
> KUNIT_CASE(drm_test_rect_calc_vscale_out_of_range),
> KUNIT_CASE(drm_test_rect_calc_vscale_negative_args),
> + KUNIT_CASE_PARAM(drm_test_rect_rotate, drm_rect_rotate_gen_params),
> { }
> };
>
> --
> 2.39.2
--
Ville Syrjälä
Intel
next prev parent reply other threads:[~2023-03-22 14:32 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-22 14:06 [PATCH 0/5] Create tests for the drm_rect functions Arthur Grillo
2023-03-22 14:06 ` [PATCH 1/5] drm/tests: Test drm_rect_intersect() Arthur Grillo
2023-03-22 14:26 ` Ville Syrjälä
2023-03-22 19:39 ` Arthur Grillo Queiroz Cabral
2023-03-22 14:06 ` [PATCH 2/5] drm/tests: Test drm_rect_calc_hscale() Arthur Grillo
2023-03-22 14:29 ` Ville Syrjälä
2023-03-22 14:06 ` [PATCH 3/5] drm/tests: Test drm_rect_calc_vscale() Arthur Grillo
2023-03-22 14:07 ` [PATCH 4/5] drm/tests: Test drm_rect_rotate() Arthur Grillo
2023-03-22 14:32 ` Ville Syrjälä [this message]
2023-03-22 14:07 ` [PATCH 5/5] drm/test: Test drm_rect_rotate_inv() Arthur Grillo
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZBsRhcQifOj0hETj@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=airled@gmail.com \
--cc=andrealmeid@riseup.net \
--cc=arthurgrillo@riseup.net \
--cc=carlos.craveiro@usp.br \
--cc=dlatypov@google.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=javierm@redhat.com \
--cc=mairacanal@riseup.net \
--cc=matheus.vieira.g@usp.br \
--cc=maxime@cerno.tech \
--cc=tales.aparecida@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox