summaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)AuthorFilesLines
2009-07-22input: remove XI2 keysym grabs, use keycode grabs instead.Peter Hutterer1-2/+2
Keysym grabs are tricky in the details, keycode grabs are known to work. So for now, provide keycode grabs only. Requires inputproto 1.9.99.15. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-07-14test: add tests for ProcXIGetClientPointer.Peter Hutterer2-1/+174
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-07-14test: add ProcXISetClientPointer tests.Peter Hutterer2-1/+154
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-07-14test: add ProcXIGetSelectedEvents tests.Peter Hutterer2-1/+246
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-07-14test: add ProcXISelectEvents tests.Peter Hutterer2-1/+326
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-07-14test: add ProcXIQueryDevice tests.Peter Hutterer2-1/+321
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-07-14test: Add ProcXIQueryVersion tests.Peter Hutterer2-0/+197
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-07-14test: add xi2 directory, prepare for protocol testing.Peter Hutterer4-0/+282
These two files provide a couple of common defines, functions and variables that will be used in a number of protocol tests. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-07-14Add test subdir to base Makefile.amPeter Hutterer1-3/+0
If unittests are enabled, make will build those as well - spotting potential build errors in the tests faster. Furthermore, this allows for the tests to be run from the top-level directory. This patch removes the "run make check to build the test suite" message since that'd pop up after every build now. If unittests are disabled, this change has no effect. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-07-14include: introduce byte counting functions.Peter Hutterer1-0/+39
This patch adds the following three functions: bits_to_bytes(bits) - the number of bytes needed to hold 'bits' bytes_to_int32(bytes) - the number of 4-byte units to hold 'bytes' pad_to_int32(bytes) - the closest multiple of 4 equal to or larger than 'bytes'. All three operations are common in protocol processing and currently the server has ((foo + 7)/8 + 3)/4 operations all over the place. A common set of functions reduce the error rate of these (albeit simple) calculations and improve readability of the code. The functions do not check for overflow. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-06-29test: fix build error introduced by XINPUT_ABI 7Peter Hutterer1-2/+3
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-06-05Revert "test: check from INT_MIN to INT_MAX for core type conversion"Peter Hutterer2-31/+26
This patch requires extra special casing to check if the linker supports the -wrap option. Patches to do so will follow, in the meantime, revert this commit. It shouldn't have been pushed in the first place anyway. This reverts commit d979f443946011158b6a183582728a6899c33b85. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-06-04test: check from INT_MIN to INT_MAX for core type conversionPeter Hutterer2-26/+31
ErrorF is link-wrapped to reduce the run-time of the test. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-06-04test: adjust event_to_core_conversion test for new ProximityIn/Out behaviourPeter Hutterer1-2/+8
Both types now return BadMatch. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-06-02test: add grab matching tests.Peter Hutterer1-0/+363
2009-06-01input: Add grabtype to GrabParameters.Peter Hutterer1-0/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-06-01test: Add GetSelectedEvents request to struct size tests.Peter Hutterer1-0/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-06-01test: fix compile error introduced with the removal of isMaster.Peter Hutterer1-1/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-05-16Update to new XI2 namesPeter Hutterer1-5/+5
2009-05-08Xi: Add XI2 property requests.Peter Hutterer1-0/+4
2009-05-06test: add test for xi2 struct sizes.Peter Hutterer1-0/+28
2009-05-01input: reshuffle CreateGrab and friends to take a GrabParameters param.Peter Hutterer1-0/+62
This is cleaning up work in preparation for XI2 passive grabs.
2009-04-28test: add InternalEvent to core event conversion tests.Peter Hutterer1-0/+144
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-04-28test: add a simple test to verify device axis intialization.Peter Hutterer2-2/+85
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-04-28Add a test-suite for in-server unit-testing.Peter Hutterer3-0/+248
This patch adds a test/ directory that contains the setup for a unit-testing suite designed for in-server unit-testing. All functions available to the X server are available to the test binaries through static linking. This test suite uses the glib testing framework. Do not use glib calls outside of the test/ directory. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>