[BROWSEUI_APITEST] Comment out tests that fail on Windows

@Katayama Hirofumi please investigate.
This commit is contained in:
Timo Kreuzer 2024-04-13 14:00:14 +03:00
parent e8c7597b17
commit 5140a990fe

View file

@ -449,7 +449,7 @@ DoTestCaseA(INT x, INT y, INT cx, INT cy, LPCWSTR pszInput,
(WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | LVS_NOCOLUMNHEADER | \ (WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | LVS_NOCOLUMNHEADER | \
LVS_OWNERDATA | LVS_OWNERDRAWFIXED | LVS_SINGLESEL | LVS_REPORT) // 0x54005405 LVS_OWNERDATA | LVS_OWNERDRAWFIXED | LVS_SINGLESEL | LVS_REPORT) // 0x54005405
if (bLong) if (bLong)
ok(style == LIST_STYLE_1, "style was 0x%08lx\n", style); (void)0; // ok(style == LIST_STYLE_1, "style was 0x%08lx\n", style); broken on Windows
else else
ok(style == LIST_STYLE_2, "style was 0x%08lx\n", style); ok(style == LIST_STYLE_2, "style was 0x%08lx\n", style);
ok_long(exstyle, 0); ok_long(exstyle, 0);
@ -493,7 +493,7 @@ DoTestCaseA(INT x, INT y, INT cx, INT cy, LPCWSTR pszInput,
// check item count // check item count
INT nListCount = ListView_GetItemCount(hwndList); INT nListCount = ListView_GetItemCount(hwndList);
if (nListCount < 1000) if (nListCount < 1000)
ok_int(nListCount, nCount); (void)0; // ok_int(nListCount, nCount); broken on Windows
else else
ok_int(nListCount, 1000); ok_int(nListCount, 1000);