Home
last modified time | relevance | path

Searched +full:libinput +full:- +full:test +full:- +full:suite +full:- +full:pad (Results 1 – 4 of 4) sorted by relevance

/third_party/libinput/
Dmeson.build1 project('libinput', 'c', project
9 dir_data = get_option('prefix') / get_option('datadir') / 'libinput'
11 dir_overrides = get_option('prefix') / get_option('sysconfdir') / 'libinput'
12 dir_libexec = get_option('prefix') / get_option('libexecdir') / 'libinput'
17 dir_src_test = meson.current_source_dir() / 'test'
19 dir_gitlab_ci = meson.current_source_dir() / '.gitlab-ci'
21 dir_udev = get_option('udev-dir')
31 # We use libtool-version numbers because it's easier to understand.
44 libinput_so_version = '@0@.@1@.@2@'.format((libinput_lt_c - libinput_lt_a),
50 '-Wno-unused-parameter',
[all …]
D.gitlab-ci.yml9 # To change the gitlab CI, edit .gitlab-ci/ci.template and/or .gitlab-ci/config.yaml
10 # and run ci-fairy generate-template. For details, see
11 # https://freedesktop.pages.freedesktop.org/ci-templates/ci-fairy.html#templating-gitlab-ci-yml
14 # - we really want to run dnf/apt/... only once, updating on the test runner for
18 # This is handled by the ci-templates, ensuring containers are only rebuilt
21 # - GitLab only allows one script: set per job but we have a bunch of commands
22 # we need to re-run for each build (meson && ninja && etc). YAML cannot merge
27 # MESON_ARGS=-Denable-something=true
28 # NINJA_ARGS=dist ... to run 'ninja -C builddir dist'
35 # e.g. fedora:31@build-default
[all …]
/third_party/libinput/test/
Dlitest.c52 #include <systemd/sd-bus.h>
61 #include "litest-int.h"
62 #include "libinput-util.h"
72 "/91-litest-fuzz-override-REMOVEME-XXXXXX.rules"
74 "/91-litest-test-device-REMOVEME-XXXXXXX.rules"
76 "/80-libinput-device-groups-litest-XXXXXX.rules"
95 of the test run */
129 if (pipe(pipefd) == -1) in litest_backtrace()
160 while ((nread = read(pipefd[0], buf, sizeof(buf) - 1)) > 0) { in litest_backtrace()
243 struct test { struct
[all …]
/third_party/libinput/src/
Devdev-tablet.c25 #include "evdev-tablet.h"
26 #include "util-input-event.h"
42 detect out-of-range.
43 This value is higher during test suite runs */
46 #define tablet_set_status(tablet_,s_) (tablet_)->status |= (s_)
47 #define tablet_unset_status(tablet_,s_) (tablet_)->status &= ~(s_)
48 #define tablet_has_status(tablet_,s_) (!!((tablet_)->status & (s_)))
55 const struct button_state *state = &tablet->button_state, in tablet_get_pressed_buttons()
56 *prev_state = &tablet->prev_button_state; in tablet_get_pressed_buttons()
58 for (i = 0; i < sizeof(buttons->bits); i++) in tablet_get_pressed_buttons()
[all …]