[PATCH] comctl32/tests: Fix test failures on XP.

Nikolay Sivov nsivov at codeweavers.com
Fri Aug 24 04:57:08 CDT 2018


Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
---
 dlls/comctl32/tests/treeview.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/comctl32/tests/treeview.c b/dlls/comctl32/tests/treeview.c
index 14d814d8e0..c60aa8a6c4 100644
--- a/dlls/comctl32/tests/treeview.c
+++ b/dlls/comctl32/tests/treeview.c
@@ -2225,8 +2225,8 @@ static void _check_item(HWND hwnd, HTREEITEM item, BOOL is_version_6, int line)
         else
             width = data->width;
     todo_wine
-        ok_(__FILE__, line)(width == (rect.right - rect.left), "Width %d, rect width %d.\n",
-            width, rect.right - rect.left);
+        ok_(__FILE__, line)(width == (rect.right - rect.left) || broken(is_version_6 && width == 0) /* XP */,
+                "Width %d, rect width %d.\n", width, rect.right - rect.left);
     }
 }
 
-- 
2.18.0




More information about the wine-devel mailing list