mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
[BROWSEUI_APITEST] Comment out tests that fail on Windows
@Katayama Hirofumi please investigate.
This commit is contained in:
parent
e8c7597b17
commit
5140a990fe
|
@ -449,7 +449,7 @@ DoTestCaseA(INT x, INT y, INT cx, INT cy, LPCWSTR pszInput,
|
|||
(WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | LVS_NOCOLUMNHEADER | \
|
||||
LVS_OWNERDATA | LVS_OWNERDRAWFIXED | LVS_SINGLESEL | LVS_REPORT) // 0x54005405
|
||||
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
|
||||
ok(style == LIST_STYLE_2, "style was 0x%08lx\n", style);
|
||||
ok_long(exstyle, 0);
|
||||
|
@ -493,7 +493,7 @@ DoTestCaseA(INT x, INT y, INT cx, INT cy, LPCWSTR pszInput,
|
|||
// check item count
|
||||
INT nListCount = ListView_GetItemCount(hwndList);
|
||||
if (nListCount < 1000)
|
||||
ok_int(nListCount, nCount);
|
||||
(void)0; // ok_int(nListCount, nCount); broken on Windows
|
||||
else
|
||||
ok_int(nListCount, 1000);
|
||||
|
||||
|
|
Loading…
Reference in a new issue