tests: use weston_compositor_exit
Use the proper function to exit instead of the libwayland one, to allow main handle_exit() to be called. This is just to unify the exit paths. Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.com>
This commit is contained in:
parent
818c20e78b
commit
a37920e77c
@ -85,7 +85,7 @@ runtime_tests(void *data)
|
||||
api = weston_plugin_api_get(compositor, MY_API_NAME, sz);
|
||||
assert(api && api->func2 == dummy_func);
|
||||
|
||||
wl_display_terminate(compositor->wl_display);
|
||||
weston_compositor_exit(compositor);
|
||||
}
|
||||
|
||||
WL_EXPORT int
|
||||
|
@ -76,7 +76,7 @@ surface_to_from_global(void *data)
|
||||
weston_view_from_global(view, 5, 10, &ix, &iy);
|
||||
assert(ix == 0 && iy == 0);
|
||||
|
||||
wl_display_terminate(compositor->wl_display);
|
||||
weston_compositor_exit(compositor);
|
||||
}
|
||||
|
||||
WL_EXPORT int
|
||||
|
@ -57,7 +57,7 @@ surface_transform(void *data)
|
||||
weston_view_to_global_float(view, 50, 40, &x, &y);
|
||||
assert(x == 200 && y == 340);
|
||||
|
||||
wl_display_terminate(compositor->wl_display);
|
||||
weston_compositor_exit(compositor);
|
||||
}
|
||||
|
||||
WL_EXPORT int
|
||||
|
@ -72,7 +72,7 @@ test_client_sigchld(struct weston_process *process, int status)
|
||||
/* In case the child aborted or segfaulted... */
|
||||
assert(status == 0);
|
||||
|
||||
wl_display_terminate(test->compositor->wl_display);
|
||||
weston_compositor_exit(test->compositor);
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user