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

This commit is contained in:
Ge van Geldorp 2009-09-03 11:51:44 +02:00 committed by Alexandre Julliard
parent 782dea35f8
commit b5d7025932

View file

@ -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);