summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2015-03-05 18:39:15 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2015-03-10 07:09:23 +1000
commit37af67c666f4f74f263851e7e04853264509126c (patch)
treedcd1b745cfb83f32ed69de9f047149263713f775
parent11cec1685206efe02f6146cde15496d3dceab448 (diff)
test: fix/disable two tap test for semi-mt devices
On a semi-mt device lifting slot 0 before slot 1 makes slots 1 become slot 0 (with the matching coordinate jump), potentially triggering the tap movement threshold. On one test we can just swap the release order, the other test we need to disable (the _inverted version of this test tests the other order anyway). Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Hans de Goede <hdegoede@redhat.com>
-rw-r--r--test/touchpad.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/touchpad.c b/test/touchpad.c
index 8077f8e3..5c8f579e 100644
--- a/test/touchpad.c
+++ b/test/touchpad.c
@@ -2570,8 +2570,8 @@ START_TEST(touchpad_left_handed_tapping_2fg)
litest_touch_down(dev, 0, 50, 50);
litest_touch_down(dev, 1, 70, 50);
- litest_touch_up(dev, 0);
litest_touch_up(dev, 1);
+ litest_touch_up(dev, 0);
libinput_dispatch(li);
litest_timeout_tap();
@@ -3356,7 +3356,7 @@ int main(int argc, char **argv) {
litest_add("touchpad:tap", touchpad_2fg_tap_n_drag, LITEST_TOUCHPAD, LITEST_SINGLE_TOUCH);
litest_add("touchpad:tap", touchpad_2fg_tap_n_drag_3fg_btntool, LITEST_TOUCHPAD, LITEST_SINGLE_TOUCH|LITEST_APPLE_CLICKPAD);
litest_add("touchpad:tap", touchpad_2fg_tap_n_drag_3fg, LITEST_TOUCHPAD, LITEST_SINGLE_TOUCH);
- litest_add("touchpad:tap", touchpad_2fg_tap, LITEST_TOUCHPAD, LITEST_SINGLE_TOUCH);
+ litest_add("touchpad:tap", touchpad_2fg_tap, LITEST_TOUCHPAD, LITEST_SINGLE_TOUCH|LITEST_SEMI_MT);
litest_add("touchpad:tap", touchpad_2fg_tap_inverted, LITEST_TOUCHPAD, LITEST_SINGLE_TOUCH);
litest_add("touchpad:tap", touchpad_1fg_tap_click, LITEST_TOUCHPAD|LITEST_BUTTON, LITEST_CLICKPAD);
litest_add("touchpad:tap", touchpad_2fg_tap_click, LITEST_TOUCHPAD|LITEST_BUTTON, LITEST_SINGLE_TOUCH|LITEST_CLICKPAD);