summaryrefslogtreecommitdiff
path: root/tests/kms_setmode.c
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2015-05-14 14:19:01 +0100
committerDamien Lespiau <damien.lespiau@intel.com>2015-05-15 12:22:14 +0100
commitfd6846c99f00e265f558cf0106c833b96caf977f (patch)
tree44831be4a5e81f6cbbea73e6734dbaf68b99ad14 /tests/kms_setmode.c
parent7a5e1c6f0aebcfabecc3db96cb87add894530326 (diff)
lib: Add a user data pointer to the argument parsing functions
It can be useful to have one of those to carry state between the handler parsing the options and the rest of the test. Right now the only thing we can do is to use global variables for that. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Diffstat (limited to 'tests/kms_setmode.c')
-rw-r--r--tests/kms_setmode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c
index 5520dcc8..82769ab7 100644
--- a/tests/kms_setmode.c
+++ b/tests/kms_setmode.c
@@ -662,7 +662,7 @@ static void run_test(const struct test_config *tconf)
test_combinations(tconf, connector_num);
}
-static int opt_handler(int opt, int opt_index)
+static int opt_handler(int opt, int opt_index, void *data)
{
switch (opt) {
case 'd':
@@ -700,7 +700,7 @@ int main(int argc, char **argv)
int ret;
ret = igt_subtest_init_parse_opts(&argc, argv, "dt:", NULL, help_str,
- opt_handler);
+ opt_handler, NULL);
if (ret < 0)
return ret == -1 ? 0 : ret;