tests: remove skip() as unused

skip() is a left-over from an old test harness design, the comment even
refers to automake. Calling skip() cannot do anything good anymore,
because it wouldn't print the skips in the TAP report, so it would
probably be considered a failure.

Delete this unused and nowadays incorrect function, so it doesn't
confuse people.

Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.com>
dev
Pekka Paalanen 2 years ago committed by Marius Vlad
parent f7541d9e42
commit b878357dfd
  1. 16
      tests/weston-test-client-helper.c
  2. 3
      tests/weston-test-client-helper.h

@ -870,22 +870,6 @@ static const struct wl_registry_listener registry_listener = {
handle_global_remove, handle_global_remove,
}; };
void
skip(const char *fmt, ...)
{
va_list argp;
va_start(argp, fmt);
vfprintf(stderr, fmt, argp);
va_end(argp);
/* automake tests uses exit code 77. weston-test-runner will see
* this and use it, and then weston-test's sigchld handler (in the
* weston process) will use that as an exit status, which is what
* ninja will see in the end. */
exit(77);
}
void void
expect_protocol_error(struct client *client, expect_protocol_error(struct client *client,
const struct wl_interface *intf, const struct wl_interface *intf,

@ -232,9 +232,6 @@ frame_callback_wait_nofail(struct client *client, int *done);
#define frame_callback_wait(c, d) assert(frame_callback_wait_nofail((c), (d))) #define frame_callback_wait(c, d) assert(frame_callback_wait_nofail((c), (d)))
void
skip(const char *fmt, ...);
void void
expect_protocol_error(struct client *client, expect_protocol_error(struct client *client,
const struct wl_interface *intf, uint32_t code); const struct wl_interface *intf, uint32_t code);

Loading…
Cancel
Save