summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDawid Gajownik <gajownik@gmail.com>2015-08-06 17:12:19 -0300
committerBryce Harrington <bryce@osg.samsung.com>2015-08-07 12:01:22 -0700
commit74a635b1ecf5efa437b5c8dc194a45528ce959ce (patch)
tree7fc0f88638e9906f9a93cb83f5a2689f434af4f6 /tests
parent5e653caa4a45a313a968a6a52437c0c382dc8b34 (diff)
downloadweston-74a635b1ecf5efa437b5c8dc194a45528ce959ce.tar.gz
Coding style fixes
- opening braces are on the same line as the if statement - opening braces are not on the same line as the function name - space between for/while/if and opening parenthesis Signed-off-by: Dawid Gajownik <gajownik@gmail.com> Reviewed-by: Derek Foreman <derekf@osg.samsung.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/internal-screenshot-test.c12
-rw-r--r--tests/keyboard-test.c2
-rw-r--r--tests/weston-test-client-helper.c2
3 files changed, 10 insertions, 6 deletions
diff --git a/tests/internal-screenshot-test.c b/tests/internal-screenshot-test.c
index 6038e1d0..e72a6958 100644
--- a/tests/internal-screenshot-test.c
+++ b/tests/internal-screenshot-test.c
@@ -42,7 +42,8 @@ char *server_parameters="--use-pixman --width=320 --height=240";
* @returns true if successfully saved file; false otherwise.
*/
static bool
-write_surface_as_png(const struct surface* weston_surface, const char *fname) {
+write_surface_as_png(const struct surface* weston_surface, const char *fname)
+{
cairo_surface_t *cairo_surface;
cairo_status_t status;
int bpp = 4; /* Assume ARGB */
@@ -73,7 +74,8 @@ write_surface_as_png(const struct surface* weston_surface, const char *fname) {
* when no longer used; or, NULL in case of error.
*/
static struct surface*
-load_surface_from_png(const char *fname) {
+load_surface_from_png(const char *fname)
+{
struct surface *reference;
cairo_surface_t *reference_cairo_surface;
cairo_status_t status;
@@ -138,7 +140,8 @@ load_surface_from_png(const char *fname) {
* free'd when done using it.
*/
static struct surface*
-create_screenshot_surface(struct client *client) {
+create_screenshot_surface(struct client *client)
+{
struct surface* screenshot;
screenshot = xzalloc(sizeof *screenshot);
if (screenshot == NULL)
@@ -163,7 +166,8 @@ create_screenshot_surface(struct client *client) {
* longer needed.
*/
static struct surface *
-capture_screenshot_of_output(struct client *client) {
+capture_screenshot_of_output(struct client *client)
+{
struct surface *screenshot;
/* Create a surface to hold the screenshot */
diff --git a/tests/keyboard-test.c b/tests/keyboard-test.c
index 7acc327b..9cf69ec6 100644
--- a/tests/keyboard-test.c
+++ b/tests/keyboard-test.c
@@ -40,7 +40,7 @@ TEST(simple_keyboard_test)
keyboard = client->input->keyboard;
- while(1) {
+ while (1) {
assert(keyboard->key == expect_key);
assert(keyboard->state == expect_state);
assert(keyboard->focus == expect_focus);
diff --git a/tests/weston-test-client-helper.c b/tests/weston-test-client-helper.c
index 130d2b45..65a8880b 100644
--- a/tests/weston-test-client-helper.c
+++ b/tests/weston-test-client-helper.c
@@ -525,7 +525,7 @@ seat_handle_capabilities(void *data, struct wl_seat *seat,
/* we will create/update the devices only with the right (test) seat.
* If we haven't discovered which seat is the test seat, just
* store capabilities and bail out */
- if(input->seat_name && strcmp(input->seat_name, "test-seat") == 0)
+ if (input->seat_name && strcmp(input->seat_name, "test-seat") == 0)
input_update_devices(input);
fprintf(stderr, "test-client: got seat %p capabilities: %x\n",