test: fix the clickfinger thumb test
authorPeter Hutterer <peter.hutterer@who-t.net>
Tue, 18 Jun 2019 05:13:05 +0000 (15:13 +1000)
committerPeter Hutterer <peter.hutterer@who-t.net>
Tue, 18 Jun 2019 08:29:19 +0000 (18:29 +1000)
This test was putting both fingers down in the thumb area. That's not
representative, it's more likely that a thumb is in the area and the second
finger clicks elsewhere. So let's test for that instead.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
test/test-touchpad.c

index 531e5e4..2473193 100644 (file)
@@ -5148,7 +5148,7 @@ START_TEST(touchpad_thumb_area_clickfinger)
           Shouldn't matter in real life */
        litest_touch_move_extended(dev, 0, 55, 99, axes);
        libinput_dispatch(li);
-       litest_touch_down(dev, 1, 60, 99);
+       litest_touch_down(dev, 1, 60, 50);
        libinput_dispatch(li);
        litest_button_click(dev, BTN_LEFT, true);
 
@@ -5175,7 +5175,7 @@ START_TEST(touchpad_thumb_area_clickfinger)
           Shouldn't matter in real life */
        litest_touch_move_extended(dev, 1, 60, 99, axes);
        libinput_dispatch(li);
-       litest_touch_down(dev, 0, 50, 99);
+       litest_touch_down(dev, 0, 50, 50);
        libinput_dispatch(li);
        litest_button_click(dev, BTN_LEFT, true);