Add a device test suite
authorPeter Hutterer <peter.hutterer@who-t.net>
Fri, 6 Dec 2013 05:02:11 +0000 (15:02 +1000)
committerPeter Hutterer <peter.hutterer@who-t.net>
Wed, 15 Jan 2014 01:59:27 +0000 (11:59 +1000)
commit3a344169bb2db9976655062f90b21d046780a2c5
tree9e860ab5d70b1f3115fcb58411f4dd8f5f41c568
parent86a50bccea0a757cbfddd0040acb6ec3d169fbc8
Add a device test suite

A rather large commit, copied from a similar (almost identical) suite in
libtouchpad and ported for libinput.

The goal here is to make testing for various devices easy, so the litest
("libinput test") wrappers do that. The idea is that each device has some
features, and tests are likely to exercise some features or won't work with
other features.

Each test case takes a list of required features and a list of excluded
features. The test suite will create a new test case for each device in the
suite that matches that set.

For example, the set of required LITEST_TOUCHPAD, excluded LITEST_BUTTON would
run on clickpads only, not on touchpads with buttons.

check supports suites and test cases, both named. We wrap that so that each
named set of cases we add are a test suite, with the set of devices being the
test cases. i.e.

litest_add("foo:bar", some_test_function, LITEST_ANY, LITEST_ANY);

adds a suite named "foo:bar" and test cases for both devices given, with their
shortnames as test case name, resulting in:
   "foo:bar", "trackpoint"
   "foo:bar", "clickpad"
   ...

Multiple test functions can be added to a suite. For tests without a device
requirement there is litest_add_no_device_test(...).

The environment variables CK_RUN_SUITE and CK_RUN_CASE can be used to narrow
the set of test cases. The test suite detects when run inside a debugger and
disables fork mode (the default).

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
configure.ac
test/Makefile.am
test/litest-bcm5974.c [new file with mode: 0644]
test/litest-int.h [new file with mode: 0644]
test/litest-keyboard.c [new file with mode: 0644]
test/litest-synaptics.c [new file with mode: 0644]
test/litest-trackpoint.c [new file with mode: 0644]
test/litest.c [new file with mode: 0644]
test/litest.h [new file with mode: 0644]