Alex Henrie : comctl32/tests: Permit larger propsheet buffers.

Alexandre Julliard julliard at winehq.org
Mon Dec 13 15:59:53 CST 2021


Module: wine
Branch: master
Commit: 56a6a039180053dac12305a3aecae3c77b3119ac
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=56a6a039180053dac12305a3aecae3c77b3119ac

Author: Alex Henrie <alexhenrie24 at gmail.com>
Date:   Sun Dec 12 19:04:10 2021 -0700

comctl32/tests: Permit larger propsheet buffers.

Fixes a testbot failure on Windows 10 Hebrew.

Signed-off-by: Alex Henrie <alexhenrie24 at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/comctl32/tests/propsheet.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dlls/comctl32/tests/propsheet.c b/dlls/comctl32/tests/propsheet.c
index 6cc29a8b6f1..b4696112500 100644
--- a/dlls/comctl32/tests/propsheet.c
+++ b/dlls/comctl32/tests/propsheet.c
@@ -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;
       }




More information about the wine-cvs mailing list