mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-05-08 12:28:10 +02:00
test: use a plain libinput context for the log priority check
Don't use the litest wrapper context here, it changes log priority if the test suite is run with --verbose, causing the test to fail. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
9b77661e02
commit
e2d4e0552a
1 changed files with 19 additions and 2 deletions
|
|
@ -47,17 +47,34 @@ simple_log_handler(struct libinput *libinput,
|
||||||
litest_assert_notnull(format);
|
litest_assert_notnull(format);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static int open_restricted(const char *path, int flags, void *data)
|
||||||
|
{
|
||||||
|
int fd;
|
||||||
|
fd = open(path, flags);
|
||||||
|
return fd < 0 ? -errno : fd;
|
||||||
|
}
|
||||||
|
static void close_restricted(int fd, void *data)
|
||||||
|
{
|
||||||
|
close(fd);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const struct libinput_interface simple_interface = {
|
||||||
|
.open_restricted = open_restricted,
|
||||||
|
.close_restricted = close_restricted,
|
||||||
|
};
|
||||||
|
|
||||||
START_TEST(log_default_priority)
|
START_TEST(log_default_priority)
|
||||||
{
|
{
|
||||||
enum libinput_log_priority pri;
|
enum libinput_log_priority pri;
|
||||||
struct libinput *li;
|
struct libinput *li;
|
||||||
|
|
||||||
li = litest_create_context();
|
li = libinput_path_create_context(&simple_interface, NULL);
|
||||||
pri = libinput_log_get_priority(li);
|
pri = libinput_log_get_priority(li);
|
||||||
|
|
||||||
ck_assert_int_eq(pri, LIBINPUT_LOG_PRIORITY_ERROR);
|
ck_assert_int_eq(pri, LIBINPUT_LOG_PRIORITY_ERROR);
|
||||||
|
|
||||||
litest_destroy_context(li);
|
libinput_unref(li);
|
||||||
}
|
}
|
||||||
END_TEST
|
END_TEST
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue