From: "José Expósito" <jose.exposito89@gmail.com>
To: "Maíra Canal" <mairacanal@riseup.net>
Cc: dri-devel@lists.freedesktop.org, davidgow@google.com,
magalilemes00@gmail.com, airlied@linux.ie,
tales.aparecida@gmail.com, dlatypov@google.com,
javierm@redhat.com, linux-kernel@vger.kernel.org,
geert@linux-m68k.org, tzimmermann@suse.de, isabbasso@riseup.net,
kunit-dev@googlegroups.com
Subject: Re: [PATCH 0/3] KUnit tests for RGB888, XRGB2101010 and grayscale
Date: Sun, 28 Aug 2022 10:59:16 +0200 [thread overview]
Message-ID: <20220828085916.GA12952@elementary> (raw)
In-Reply-To: <6761eeb7-eedf-c9bb-4f7f-d42e3c6e8ae4@riseup.net>
On Tue, Aug 16, 2022 at 10:37:49AM -0300, Maíra Canal wrote:
> Hi José,
>
> Tested the whole series on UML, x86, i386 and PPC. All looks fine!
>
> Tested-by: Maíra Canal <mairacanal@riseup.net>
>
> Best Regards,
> - Maíra Canal
>
> On 8/16/22 07:29, José Expósito wrote:
> > Hello everyone,
> >
> > This series is a follow up on my work adding KUnit test to the XRGB8888
> > conversion functions. This time RGB888, XRGB2101010 and gray8 are added.
> >
> > Best wishes,
> > Jose
> >
> > José Expósito (3):
> > drm/format-helper: Add KUnit tests for drm_fb_xrgb8888_to_rgb888()
> > drm/format-helper: Add KUnit tests for
> > drm_fb_xrgb8888_to_xrgb2101010()
> > drm/format-helper: Add KUnit tests for drm_fb_xrgb8888_to_gray8()
> >
> > .../gpu/drm/tests/drm_format_helper_test.c | 190 ++++++++++++++++++
> > 1 file changed, 190 insertions(+)
> >
Thanks a lot for testing the series Maíra and for the code review
David.
I added a note to my ToDo list to use KUNIT_EXPECT_MEMEQ once it gets
merged.
For the moment, I'll send v2 :)
Best wishes,
Jose
WARNING: multiple messages have this Message-ID (diff)
From: "José Expósito" <jose.exposito89@gmail.com>
To: "Maíra Canal" <mairacanal@riseup.net>
Cc: javierm@redhat.com, davidgow@google.com, dlatypov@google.com,
tzimmermann@suse.de, mripard@kernel.org, daniel@ffwll.ch,
airlied@linux.ie, maarten.lankhorst@linux.intel.com,
jani.nikula@linux.intel.com, isabbasso@riseup.net,
magalilemes00@gmail.com, tales.aparecida@gmail.com,
geert@linux-m68k.org, dri-devel@lists.freedesktop.org,
kunit-dev@googlegroups.com, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 0/3] KUnit tests for RGB888, XRGB2101010 and grayscale
Date: Sun, 28 Aug 2022 10:59:16 +0200 [thread overview]
Message-ID: <20220828085916.GA12952@elementary> (raw)
In-Reply-To: <6761eeb7-eedf-c9bb-4f7f-d42e3c6e8ae4@riseup.net>
On Tue, Aug 16, 2022 at 10:37:49AM -0300, Maíra Canal wrote:
> Hi José,
>
> Tested the whole series on UML, x86, i386 and PPC. All looks fine!
>
> Tested-by: Maíra Canal <mairacanal@riseup.net>
>
> Best Regards,
> - Maíra Canal
>
> On 8/16/22 07:29, José Expósito wrote:
> > Hello everyone,
> >
> > This series is a follow up on my work adding KUnit test to the XRGB8888
> > conversion functions. This time RGB888, XRGB2101010 and gray8 are added.
> >
> > Best wishes,
> > Jose
> >
> > José Expósito (3):
> > drm/format-helper: Add KUnit tests for drm_fb_xrgb8888_to_rgb888()
> > drm/format-helper: Add KUnit tests for
> > drm_fb_xrgb8888_to_xrgb2101010()
> > drm/format-helper: Add KUnit tests for drm_fb_xrgb8888_to_gray8()
> >
> > .../gpu/drm/tests/drm_format_helper_test.c | 190 ++++++++++++++++++
> > 1 file changed, 190 insertions(+)
> >
Thanks a lot for testing the series Maíra and for the code review
David.
I added a note to my ToDo list to use KUNIT_EXPECT_MEMEQ once it gets
merged.
For the moment, I'll send v2 :)
Best wishes,
Jose
next prev parent reply other threads:[~2022-08-28 8:59 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-16 10:29 [PATCH 0/3] KUnit tests for RGB888, XRGB2101010 and grayscale José Expósito
2022-08-16 10:29 ` José Expósito
2022-08-16 10:29 ` [PATCH 1/3] drm/format-helper: Add KUnit tests for drm_fb_xrgb8888_to_rgb888() José Expósito
2022-08-16 10:29 ` José Expósito
2022-08-17 6:34 ` David Gow
2022-08-17 6:34 ` David Gow
2022-08-16 10:29 ` [PATCH 2/3] drm/format-helper: Add KUnit tests for drm_fb_xrgb8888_to_xrgb2101010() José Expósito
2022-08-16 10:29 ` José Expósito
2022-08-17 6:36 ` David Gow
2022-08-17 6:36 ` David Gow
2022-08-17 8:12 ` kernel test robot
2022-08-17 8:12 ` kernel test robot
2022-08-16 10:29 ` [PATCH 3/3] drm/format-helper: Add KUnit tests for drm_fb_xrgb8888_to_gray8() José Expósito
2022-08-16 10:29 ` José Expósito
2022-08-17 6:43 ` David Gow
2022-08-17 6:43 ` David Gow
2022-08-16 13:37 ` [PATCH 0/3] KUnit tests for RGB888, XRGB2101010 and grayscale Maíra Canal
2022-08-16 13:37 ` Maíra Canal
2022-08-28 8:59 ` José Expósito [this message]
2022-08-28 8:59 ` José Expósito
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=20220828085916.GA12952@elementary \
--to=jose.exposito89@gmail.com \
--cc=airlied@linux.ie \
--cc=davidgow@google.com \
--cc=dlatypov@google.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=geert@linux-m68k.org \
--cc=isabbasso@riseup.net \
--cc=javierm@redhat.com \
--cc=kunit-dev@googlegroups.com \
--cc=linux-kernel@vger.kernel.org \
--cc=magalilemes00@gmail.com \
--cc=mairacanal@riseup.net \
--cc=tales.aparecida@gmail.com \
--cc=tzimmermann@suse.de \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.