mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
user32/tests: Skip test on non-US keyboard.
This commit is contained in:
parent
782dea35f8
commit
b5d7025932
1 changed files with 5 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue