summaryrefslogtreecommitdiff
path: root/tests/gem_readwrite.c
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2013-10-31 16:23:26 +0100
committerDaniel Vetter <daniel.vetter@ffwll.ch>2013-11-01 21:10:59 +0100
commit071e9ca1ca4424ba35edec0246918efdd0528d76 (patch)
tree7606357a8f0116d17f2e30a74b274796ba83f3d8 /tests/gem_readwrite.c
parent223a61e12e119d96484ed05c563d1781fd613a4e (diff)
lib: add igt_main macro
In the past new testcases with subtest often forgot to add the call to igt_exit at the end of their main() function. That is now caught with a bit more obnoxious asserts, but it's still a nuissance. This little igt_main macro takes care of that (and also of calling the subtest machinery initialization code correctly). If no one objects I'll roll this out for all the simple cases (i.e. those tests that don't have additional argv parsing on top of the subtest machinery). v2: Roll it out across the board. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'tests/gem_readwrite.c')
-rw-r--r--tests/gem_readwrite.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/gem_readwrite.c b/tests/gem_readwrite.c
index adf4af287..149254a2e 100644
--- a/tests/gem_readwrite.c
+++ b/tests/gem_readwrite.c
@@ -76,14 +76,13 @@ do_write(int fd, int handle, void *buf, int offset, int size)
int fd;
uint32_t handle;
-int main(int argc, char **argv)
+igt_main
{
uint8_t expected[OBJECT_SIZE];
uint8_t buf[OBJECT_SIZE];
int ret;
igt_skip_on_simulation();
- igt_subtest_init(argc, argv);
igt_fixture {
fd = drm_open_any();
@@ -145,6 +144,4 @@ int main(int argc, char **argv)
igt_fixture
close(fd);
-
- igt_exit();
}