From 1796fd92e7547dd101ac505b7881eff727964a98 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 20 Jun 2019 16:19:56 +1000 Subject: [PATCH] test: avoid a pointer jump when testing for the slot continuation Signed-off-by: Peter Hutterer --- test/test-touchpad.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/test/test-touchpad.c b/test/test-touchpad.c index 9469255a..c134facb 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 */