Commit 93985e70 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

shlwapi/tests: Fix some test failures on RTL enabled boxes.

parent c68589e3
...@@ -2390,13 +2390,15 @@ static void test_SHCreateWorkerWindowA(void) ...@@ -2390,13 +2390,15 @@ static void test_SHCreateWorkerWindowA(void)
/* test exstyle */ /* test exstyle */
ret = GetWindowLongA(hwnd, GWL_EXSTYLE); ret = GetWindowLongA(hwnd, GWL_EXSTYLE);
ok(ret == WS_EX_WINDOWEDGE, "0x%08lx\n", ret); ok(ret == WS_EX_WINDOWEDGE ||
ret == (WS_EX_WINDOWEDGE|WS_EX_LAYOUTRTL) /* systems with RTL locale */, "0x%08lx\n", ret);
DestroyWindow(hwnd); DestroyWindow(hwnd);
hwnd = pSHCreateWorkerWindowA(0, NULL, WS_EX_TOOLWINDOW, 0, 0, 0); hwnd = pSHCreateWorkerWindowA(0, NULL, WS_EX_TOOLWINDOW, 0, 0, 0);
ret = GetWindowLongA(hwnd, GWL_EXSTYLE); ret = GetWindowLongA(hwnd, GWL_EXSTYLE);
ok(ret == (WS_EX_WINDOWEDGE|WS_EX_TOOLWINDOW), "0x%08lx\n", ret); ok(ret == (WS_EX_WINDOWEDGE|WS_EX_TOOLWINDOW) ||
ret == (WS_EX_WINDOWEDGE|WS_EX_TOOLWINDOW|WS_EX_LAYOUTRTL) /* systems with RTL locale */, "0x%08lx\n", ret);
DestroyWindow(hwnd); DestroyWindow(hwnd);
} }
......
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