summaryrefslogtreecommitdiff
path: root/test/litest-int.h
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2019-07-01 16:12:26 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2019-07-08 09:44:12 +1000
commit6f6a9d95d5d268e50cff5a9aa733881e43e26b87 (patch)
treed3a5a466c8a0c6d439029f4238cdbe8bd3813199 /test/litest-int.h
parentcc370f53c46c1f79c7f669157a6bf5113aed0e1d (diff)
downloadlibinput-6f6a9d95d5d268e50cff5a9aa733881e43e26b87.tar.gz
test: drop the litest feature enum, make it normal bits instead
The coverity compiler can't handle 64-bit enums and since it does provide useful data, let's switch this to #defines instead. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'test/litest-int.h')
-rw-r--r--test/litest-int.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/litest-int.h b/test/litest-int.h
index c4333159..24d60874 100644
--- a/test/litest-int.h
+++ b/test/litest-int.h
@@ -35,7 +35,7 @@ struct litest_test_device {
struct list node; /* global test device list */
enum litest_device_type type;
- enum litest_device_feature features;
+ int64_t features;
const char *shortname;
void (*setup)(void); /* test fixture, used by check */
void (*teardown)(void); /* test fixture, used by check */