[igt-dev] [PATCH i-g-t 1/3] xe/xe_mmap: Negative test for mmap flags
Zbigniew Kempczyński
zbigniew.kempczynski at intel.com
Mon May 22 11:36:08 UTC 2023
On Sat, May 20, 2023 at 05:40:54PM +0530, priyanka.dandamudi at intel.com wrote:
> From: Priyanka Dandamudi <priyanka.dandamudi at intel.com>
>
> Add negative test by adding invalid mmap flags and check
> for related errors.
>
> Cc: Janga Rahul Kumar <janga.rahul.kumar at intel.com>
> Cc: Kamil Konieczny <kamil.konieczny at linux.intel.com>
> Signed-off-by: Priyanka Dandamudi <priyanka.dandamudi at intel.com>
> ---
> tests/xe/xe_mmap.c | 19 +++++++++++++++++++
> 1 file changed, 19 insertions(+)
>
> diff --git a/tests/xe/xe_mmap.c b/tests/xe/xe_mmap.c
> index 6b313a18..011b8893 100644
> --- a/tests/xe/xe_mmap.c
> +++ b/tests/xe/xe_mmap.c
> @@ -57,6 +57,22 @@ test_mmap(int fd, uint32_t flags)
> gem_close(fd, bo);
> }
>
> +/**
> + * SUBTEST: bad-flags
> + * Description: Test mmap offset with bad flags.
> + *
> + */
> +static void test_bad_flags(int fd)
> +{
> + struct drm_xe_gem_mmap_offset mmo = {
> + .handle = xe_bo_create(fd, 0, 0, 4096),
When we start rejecting unaligned allocations you'll assert at gem create.
--
Zbigniew
> + .flags = -1u,
> + };
> +
> + do_ioctl_err(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo, EINVAL);
> + gem_close(fd, mmo.handle);
> +}
> +
> igt_main
> {
> int fd;
> @@ -75,6 +91,9 @@ igt_main
> igt_subtest("vram-system")
> test_mmap(fd, vram_memory(fd, 0) | system_memory(fd));
>
> + igt_subtest("bad-flags")
> + test_bad_flags(fd);
> +
> igt_fixture {
> xe_device_put(fd);
> close(fd);
> --
> 2.25.1
>
More information about the igt-dev
mailing list