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 <daniel@ffwll.ch>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
This commit is contained in:
Jesse Barnes 2015-08-13 13:05:34 -07:00
parent b0d8d73d8b
commit 90c47b2947

View File

@ -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);