From 19120ef96c9ca59a8ab9fb3ba180c37c90fd6c7a Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 4 Mar 2015 12:21:52 +1000 Subject: [PATCH] test: disable tapping for pure motion tests No effect, all devices currently have tapping disabled. Signed-off-by: Peter Hutterer Reviewed-by: Hans de Goede --- test/touchpad.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/touchpad.c b/test/touchpad.c index ddbccebd..773d085d 100644 --- a/test/touchpad.c +++ b/test/touchpad.c @@ -38,6 +38,9 @@ START_TEST(touchpad_1fg_motion) struct libinput_event *event; struct libinput_event_pointer *ptrev; + libinput_device_config_tap_set_enabled(dev->libinput_device, + LIBINPUT_CONFIG_TAP_DISABLED); + litest_drain_events(li); litest_touch_down(dev, 0, 50, 50); @@ -68,6 +71,9 @@ START_TEST(touchpad_2fg_no_motion) struct libinput *li = dev->libinput; struct libinput_event *event; + libinput_device_config_tap_set_enabled(dev->libinput_device, + LIBINPUT_CONFIG_TAP_DISABLED); + litest_drain_events(li); litest_touch_down(dev, 0, 20, 20);