summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2021-11-30 10:36:44 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2021-12-20 15:01:56 +1000
commit3271defd328ad2c33e88de0bcf0600f1b2c8f1ec (patch)
treeac7a7158b9fc10a87e27633dadf74fdadb7f9aef /test
parent6bd9b920a40bc22c45cfdb5318d9354a7d12a470 (diff)
downloadxf86-input-wacom-3271defd328ad2c33e88de0bcf0600f1b2c8f1ec.tar.gz
Pass the context to two helper functions
In both cases we'll use that context in a follow-up patch to hook into the logging functions. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'test')
-rw-r--r--test/wacom-tests.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/wacom-tests.c b/test/wacom-tests.c
index 6642796..0fbbe71 100644
--- a/test/wacom-tests.c
+++ b/test/wacom-tests.c
@@ -510,16 +510,17 @@ test_tilt_to_rotation(void)
static void
test_mod_buttons(void)
{
+ WacomCommonRec common = {0};
int i;
for (i = 0; i < sizeof(int) * 8; i++)
{
- int buttons = mod_buttons(0, i, 1);
+ int buttons = mod_buttons(&common, 0, i, 1);
assert(buttons == (1 << i));
- buttons = mod_buttons(0, i, 0);
+ buttons = mod_buttons(&common, 0, i, 0);
assert(buttons == 0);
}
- assert(mod_buttons(0, sizeof(int) * 8, 1) == 0);
+ assert(mod_buttons(&common, 0, sizeof(int) * 8, 1) == 0);
}
static void test_set_type(void)