From a191a46a786b9de2f5371a4741c1f56da5899fc9 Mon Sep 17 00:00:00 2001 From: Martin Rys Date: Thu, 25 Apr 2024 11:03:52 +0200 Subject: [PATCH] Include COMPOSE and KANA keys in tests Part-of: --- test/test-keyboard.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/test/test-keyboard.c b/test/test-keyboard.c index 0cb8a80d..257470f9 100644 --- a/test/test-keyboard.c +++ b/test/test-keyboard.c @@ -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); }