Commit 56a6a039 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

comctl32/tests: Permit larger propsheet buffers.

Fixes a testbot failure on Windows 10 Hebrew. Signed-off-by: 's avatarAlex Henrie <alexhenrie24@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent fad8d496
......@@ -92,7 +92,8 @@ static int CALLBACK sheet_callback(HWND hwnd, UINT msg, LPARAM lparam)
size = SizeofResource(module, hrsrc);
ok(size != 0, "Failed to get size of propsheet dialog resource\n");
buffer_size = HeapSize(GetProcessHeap(), 0, (void *)lparam);
ok(buffer_size == 2 * size, "Unexpected template buffer size %u, resource size %u\n",
/* Hebrew Windows 10 allocates 2 * size + 8, all others allocate 2 * size */
ok(buffer_size >= 2 * size, "Unexpected template buffer size %u, resource size %u\n",
buffer_size, size);
break;
}
......
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