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>
This commit is contained in:
Pekka Paalanen 2022-06-08 14:14:12 +03:00 committed by Marius Vlad
parent f7541d9e42
commit b878357dfd
2 changed files with 0 additions and 19 deletions

View file

@ -870,22 +870,6 @@ static const struct wl_registry_listener registry_listener = {
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
expect_protocol_error(struct client *client,
const struct wl_interface *intf,

View file

@ -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)))
void
skip(const char *fmt, ...);
void
expect_protocol_error(struct client *client,
const struct wl_interface *intf, uint32_t code);