Browse Source

Reference issue #524 from the unit tests

pull/1484/head
Fred Sundvik 6 years ago
committed by Jack Humbert
parent
commit
41efcd6d73
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      tests/basic/test_keypress.cpp

+ 3
- 0
tests/basic/test_keypress.cpp View File

@ -111,6 +111,9 @@ TEST_F(KeyPress, RightShiftLeftControlAndCharWithTheSameKey) {
press_key(6, 0);
// BUG: The press is split into two reports
// BUG: It reports RSFT instead of LSFT
// See issue #524 for more information
// The underlying cause is that we use only one bit to represent the right hand
// modifiers.
EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_RSFT, KC_RCTRL)));
EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_RSFT, KC_RCTRL, KC_O)));
keyboard_task();


Loading…
Cancel
Save