From: Peter Hutterer Date: Thu, 20 Jun 2019 06:19:56 +0000 (+1000) Subject: test: avoid a pointer jump when testing for the slot continuation X-Git-Tag: 1.13.901~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1796fd92e7547dd101ac505b7881eff727964a98;p=platform%2Fupstream%2Flibinput.git test: avoid a pointer jump when testing for the slot continuation Signed-off-by: Peter Hutterer --- diff --git a/test/test-touchpad.c b/test/test-touchpad.c index 9469255..c134fac 100644 --- a/test/test-touchpad.c +++ b/test/test-touchpad.c @@ -5553,14 +5553,18 @@ START_TEST(touchpad_slot_swap) litest_drain_events(li); for (first = 0; first <= 1; first++) { + const double start[2][2] = {{50, 50}, {70, 70}}; second = 1 - first; - litest_touch_down(dev, 0, 50, 50); + litest_touch_down(dev, 0, start[0][0], start[0][1]); libinput_dispatch(li); - litest_touch_down(dev, 1, 70, 70); + litest_touch_down(dev, 1, start[1][0], start[1][1]); libinput_dispatch(li); - litest_touch_move_to(dev, first, 50, 50, 50, 30, 10); + litest_touch_move_to(dev, first, + start[first][0], + start[first][1], + 50, 30, 10); litest_drain_events(li); /* release touch 0, continue other slot with 0's coords */