From: Peter Hutterer Date: Tue, 18 Jun 2019 05:13:05 +0000 (+1000) Subject: test: fix the clickfinger thumb test X-Git-Tag: 1.13.901~41 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=84872fa35b8bad8eb45af5b2df36d9ac1e01aa98;p=platform%2Fupstream%2Flibinput.git test: fix the clickfinger thumb test 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 --- diff --git a/test/test-touchpad.c b/test/test-touchpad.c index 531e5e4..2473193 100644 --- a/test/test-touchpad.c +++ b/test/test-touchpad.c @@ -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);