diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-07-14 14:42:23 +0200 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-07-14 15:03:59 +0200 |
commit | 5a98fe9d4ae7431a9c65579dcc0ac32ff3e83adf (patch) | |
tree | 0ead4fe77394c86e0b858922139d903336c17084 /tests/gen3_mixed_blits.c | |
parent | c7be53c7cb9aa7159ea316b56be119efd436ec17 (diff) |
lib: Add argc/argv to igt_simple_init
There's a pile of ideas around to add generally useful options like
--debug to all igt tests. Or unify the runtime behaviour between
simple and subtest tests a bit more.
The first step to get there is to add argc/argv to igt_simple_init so
that we can get at the argument list.
Cc: Tim Gore <tim.gore@intel.com>
Cc: Thomas Wood <thomas.wood@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'tests/gen3_mixed_blits.c')
-rw-r--r-- | tests/gen3_mixed_blits.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gen3_mixed_blits.c b/tests/gen3_mixed_blits.c index 75d61a58..33eea746 100644 --- a/tests/gen3_mixed_blits.c +++ b/tests/gen3_mixed_blits.c @@ -463,7 +463,7 @@ int main(int argc, char **argv) uint32_t start = 0; int i, fd, count; - igt_simple_init(); + igt_simple_init(argc, argv); fd = drm_open_any(); |