Commit 78a90f1f authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

shell32/tests: Skip some tests on Win9x and WinMe.

parent cfdfbeaf
......@@ -309,6 +309,11 @@ static void test_get_file_info_iconlist(void)
hSysImageList = (HIMAGELIST) pSHGetFileInfoW((const WCHAR *)pidList, 0,
&shInfow, sizeof(shInfow),
SHGFI_SYSICONINDEX | SHGFI_SMALLICON | SHGFI_PIDL);
if (!hSysImageList)
{
win_skip("SHGetFileInfoW is not implemented\n");
return;
}
ok(hSysImageList != INVALID_HANDLE_VALUE, "Can't get handle for CSIDL_DESKTOP imagelist\n");
todo_wine ok(shInfow.hIcon == 0, "SHGetFileInfoW(CSIDL_DESKTOP, SHGFI_SYSICONINDEX|SHGFI_SMALLICON|SHGFI_PIDL) did not clear hIcon\n");
ok(shInfow.szTypeName[0] == 0, "SHGetFileInfoW(CSIDL_DESKTOP, SHGFI_SYSICONINDEX|SHGFI_SMALLICON|SHGFI_PIDL) did not clear szTypeName[0]\n");
......
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