summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Barnes <jbarnes@virtuousgeek.org>2015-08-13 13:05:34 -0700
committerJesse Barnes <jbarnes@virtuousgeek.org>2015-08-14 09:27:30 -0700
commit90c47b294741089a25480e1ef73ec4d0cc5d666c (patch)
tree4d0a96dea6cb33d61089075d481e69609c40bb1f
parentb0d8d73d8b7e5befd613e49610cb22287a8a60f2 (diff)
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>
-rw-r--r--tests/gem_mmap.c4
1 files 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);