[PATCH 2/2] user32/tests: Add tests for VK_SPACE, Shift-Space and Ctrl-Space

Hugh McMaster hugh.mcmaster at outlook.com
Tue Dec 1 04:38:01 CST 2015


Signed-off-by: Hugh McMaster <hugh.mcmaster at outlook.com>
---
 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..62de35e 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, {VK_SPACE}},
+    { VK_SPACE, shift, 0, 1, {VK_SPACE}},
+    { VK_SPACE, ctrl, 0, 1, {VK_SPACE}},
 };
 
 static void test_ToUnicode(void)
-- 
1.9.1




More information about the wine-patches mailing list