diff --git a/dlls/user32/tests/input.c b/dlls/user32/tests/input.c index 1d2741e9039..548a5adbea0 100644 --- a/dlls/user32/tests/input.c +++ b/dlls/user32/tests/input.c @@ -892,6 +892,11 @@ static void test_Input_blackbox(void) HWND window; 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 |WS_VISIBLE, 0, 0, 200, 60, NULL, NULL, NULL, NULL);