Module: wine Branch: master Commit: c87a78bc949c5b497e58364053d29e18c305d3ca URL: http://source.winehq.org/git/wine.git/?a=commit;h=c87a78bc949c5b497e58364053...
Author: Hugh McMaster hugh.mcmaster@outlook.com Date: Tue Dec 1 21:38:01 2015 +1100
user32/tests: Add tests for VK_SPACE, Shift-Space and Ctrl-Space.
Signed-off-by: Hugh McMaster hugh.mcmaster@outlook.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/user32/tests/input.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/dlls/user32/tests/input.c b/dlls/user32/tests/input.c index d662d6f..0d7c6d6 100644 --- a/dlls/user32/tests/input.c +++ b/dlls/user32/tests/input.c @@ -1635,6 +1635,9 @@ static const struct tounicode_tests { 0, ctrl, '^', 1, {0x1e}}, { 0, ctrl, '_', 1, {0x1f}}, { 0, ctrl, '`', 0, {}}, + { VK_SPACE, 0, 0, 1, {' ',0}}, + { VK_SPACE, shift, 0, 1, {' ',0}}, + { VK_SPACE, ctrl, 0, 1, {' ',0}}, };
static void test_ToUnicode(void)