tests: Drop yield() helper function
authorKristian Høgsberg <krh@bitplanet.net>
Wed, 12 Dec 2012 03:17:35 +0000 (22:17 -0500)
committerKristian Høgsberg <krh@bitplanet.net>
Wed, 12 Dec 2012 03:17:35 +0000 (22:17 -0500)
Remaining use case was when we move the pointer.  This doesn't change
geometry so we can just use a wl_display_roundtrip() to make sure
we get the request to the server and receive the resulting events.

tests/button-test.c
tests/event-test.c
tests/weston-test-client-helper.c
tests/weston-test-client-helper.h

index 2bb2e7f..ac75ee0 100644 (file)
@@ -36,7 +36,8 @@ TEST(simple_button_test)
        assert(pointer->button == 0);
        assert(pointer->state == 0);
 
-       move_pointer(client, 150, 150);
+       wl_test_move_pointer(client->test->wl_test, 150, 150);
+       wl_display_roundtrip(client->wl_display);
        assert(pointer->x == 50);
        assert(pointer->y == 50);
 
index 4c992e4..ba22f3f 100644 (file)
@@ -56,7 +56,8 @@ check_pointer(struct client *client, int x, int y)
 static void
 check_pointer_move(struct client *client, int x, int y)
 {
-       move_pointer(client, x, y);
+       wl_test_move_pointer(client->test->wl_test, x, y);
+       wl_display_roundtrip(client->wl_display);
        check_pointer(client, x, y);
 }
 
index 01405d8..45419fc 100644 (file)
@@ -40,29 +40,6 @@ surface_contains(struct surface *surface, int x, int y)
        return x >= sx && y >= sy && x < sx + sw && y < sy + sh;
 }
 
-void
-yield(struct client *client)
-{
-       /*
-        * FIXME: ugh! how do we ensure all events have finished
-        * propagating to the client.  The calls to usleep seem to do a
-        * pretty reasonable job... and without them, tests can fail
-        * intermittently.
-        */
-       usleep(0.02 * 1e6);
-       wl_display_flush(client->wl_display);
-       wl_display_roundtrip(client->wl_display);
-       usleep(0.02 * 1e6);
-}
-
-void
-move_pointer(struct client *client, int x, int y)
-{
-       wl_test_move_pointer(client->test->wl_test, x, y);
-
-       yield(client);
-}
-
 static void
 move_client_frame_handler(void *data, 
                          struct wl_callback *callback, uint32_t time)
index 582572d..3e648ae 100644 (file)
@@ -97,12 +97,6 @@ int
 surface_contains(struct surface *surface, int x, int y);
 
 void
-yield(struct client *client);
-
-void
-move_pointer(struct client *client, int x, int y);
-
-void
 move_client(struct client *client, int x, int y);