From 90c47b294741089a25480e1ef73ec4d0cc5d666c Mon Sep 17 00:00:00 2001 From: Jesse Barnes Date: Thu, 13 Aug 2015 13:05:34 -0700 Subject: [PATCH] tests/gem_mmap: mark basic object creation tests as basic We should be able to create small and moderate sized objects quickly and without errors. Reviewed-by: Daniel Vetter Signed-off-by: Jesse Barnes --- tests/gem_mmap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/gem_mmap.c b/tests/gem_mmap.c index 822c97e3..5952983b 100644 --- a/tests/gem_mmap.c +++ b/tests/gem_mmap.c @@ -138,7 +138,7 @@ igt_main igt_assert(ret == -1 && errno == ENOENT); } - igt_subtest("new-object") { + igt_subtest("basic") { arg.handle = gem_create(fd, OBJECT_SIZE); arg.offset = 0; arg.size = OBJECT_SIZE; @@ -174,7 +174,7 @@ igt_main gem_close(fd, arg.handle); } - igt_subtest("small-bo") + igt_subtest("basic-small-bo") test_huge_bo(-1); igt_subtest("big-bo") test_huge_bo(0);