diff options
Diffstat (limited to 'test/litest.c')
-rw-r--r-- | test/litest.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/litest.c b/test/litest.c index 3da187cf..99bed061 100644 --- a/test/litest.c +++ b/test/litest.c @@ -1588,18 +1588,22 @@ litest_touch_move_two_touches(struct litest_device *d, int steps, int sleep_ms) { for (int i = 0; i < steps - 1; i++) { + litest_push_event_frame(d); litest_touch_move(d, 0, x0 + dx / steps * i, y0 + dy / steps * i); litest_touch_move(d, 1, x1 + dx / steps * i, y1 + dy / steps * i); + litest_pop_event_frame(d); if (sleep_ms) { libinput_dispatch(d->libinput); msleep(sleep_ms); } libinput_dispatch(d->libinput); } + litest_push_event_frame(d); litest_touch_move(d, 0, x0 + dx, y0 + dy); litest_touch_move(d, 1, x1 + dx, y1 + dy); + litest_pop_event_frame(d); } void |