Commit b5d70259 authored by Ge van Geldorp's avatar Ge van Geldorp Committed by Alexandre Julliard

user32/tests: Skip test on non-US keyboard.

parent 782dea35
...@@ -892,6 +892,11 @@ static void test_Input_blackbox(void) ...@@ -892,6 +892,11 @@ static void test_Input_blackbox(void)
HWND window; HWND window;
HHOOK hook; HHOOK hook;
if (GetKeyboardLayout(0) != (HKL)(ULONG_PTR)0x04090409)
{
win_skip("Skipping Input_blackbox test on non-US keyboard\n");
return;
}
window = CreateWindow("Static", NULL, WS_POPUP|WS_HSCROLL|WS_VSCROLL window = CreateWindow("Static", NULL, WS_POPUP|WS_HSCROLL|WS_VSCROLL
|WS_VISIBLE, 0, 0, 200, 60, NULL, NULL, |WS_VISIBLE, 0, 0, 200, 60, NULL, NULL,
NULL, NULL); NULL, NULL);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment