xserver/test
Keith Packard 1338bfa81c test: Make touch test reflect new ability to realloc touch array [v2]
Threaded input allows the input code to call malloc while processing
events. In this case, that's in the middle of processing touch events
and needing to resize the touch buffer.

This test was expecting the old behaviour where touch points would get
dropped if the buffer was full. The fix is to check for the new
behaviour instead.

[v2]

 * make sure two finding two equivalent touches return the same touch
   object

 * check to make sure the queue resizes by the expected amount

   Changes provided by Peter Hutterer <peter.hutterer@who-t.net>

Signed-off-by: Keith Packard <keithp@keithp.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
2016-05-29 18:35:29 -07:00
..
xi1 test/xi1: Update .gitignore 2015-09-21 14:17:48 -04:00
xi2 Add request length checking test cases for some Xinput 2.x requests 2014-12-08 18:09:49 -08:00
.gitignore
Makefile.am Remove SIGIO support for input [v5] 2016-05-26 16:07:54 -07:00
README test: Fix typo and drop documentation references to glib. 2015-09-23 10:48:12 -04:00
ddxstubs.c
fixes.c
hashtabletest.c
input.c test: add tests for new valuator mask features 2015-05-20 12:44:58 +10:00
list.c
misc.c Add REQUEST_FIXED_SIZE testcases to test/misc.c 2014-12-08 18:09:49 -08:00
signal-logging.c xserver: Move 'pragma GCC diagnostic' outside functions 2014-09-18 22:28:27 -07:00
string.c
touch.c test: Make touch test reflect new ability to realloc touch array [v2] 2016-05-29 18:35:29 -07:00
xfree86.c
xkb.c
xtest.c

                        X server test suite

This suite contains a set of tests to verify the behaviour of functions used
internally to the server.

= How it works =
Through some automake abuse, we link the test programs with the same static
libraries as the Xorg binary. The test suites can then call various functions
and verify their behaviour - without the need to start the server or connect
clients.

This testing only works for functions that do not rely on a particular state
of the X server. Unless the test suite replicates the expected state, which
may be difficult.

= How to run the tests =
Run "make check" in the test directory. This will compile the tests and execute
them in the order specified in the TESTS variable in test/Makefile.am.

Each set of tests related to a subsystem are available as a binary that can be
executed directly. For example, run "xkb" to perform some xkb-related tests.

== Adding a new test ==
When adding a new test, ensure that you add a short description of what the
test does and what the expected outcome is.