Include COMPOSE and KANA keys in tests

Part-of: <https://gitlab.freedesktop.org/libinput/libinput/-/merge_requests/990>
This commit is contained in:
Martin Rys 2024-04-25 11:03:52 +02:00 committed by Peter Hutterer
parent 7c91e3539c
commit a191a46a78

View file

@ -435,14 +435,24 @@ START_TEST(keyboard_leds)
LIBINPUT_LED_CAPS_LOCK);
libinput_device_led_update(device,
LIBINPUT_LED_SCROLL_LOCK);
libinput_device_led_update(device,
LIBINPUT_LED_COMPOSE);
libinput_device_led_update(device,
LIBINPUT_LED_KANA);
libinput_device_led_update(device,
LIBINPUT_LED_NUM_LOCK|
LIBINPUT_LED_NUM_LOCK |
LIBINPUT_LED_CAPS_LOCK);
libinput_device_led_update(device,
LIBINPUT_LED_NUM_LOCK|
LIBINPUT_LED_NUM_LOCK |
LIBINPUT_LED_CAPS_LOCK |
LIBINPUT_LED_SCROLL_LOCK);
libinput_device_led_update(device,
LIBINPUT_LED_NUM_LOCK |
LIBINPUT_LED_CAPS_LOCK |
LIBINPUT_LED_SCROLL_LOCK |
LIBINPUT_LED_COMPOSE |
LIBINPUT_LED_KANA);
libinput_device_led_update(device, 0);
libinput_device_led_update(device, -1);
}