mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:03:00 +00:00
[SHELL32_WINETEST]: Sync with Wine 1.5.19.
svn path=/trunk/; revision=57858
This commit is contained in:
parent
6b1996b292
commit
2aac2655db
9 changed files with 1066 additions and 496 deletions
|
@ -140,7 +140,7 @@ static void test_namespace(void)
|
|||
p = path + lstrlenW(path);
|
||||
while (path < p && *(p - 1) != '\\')
|
||||
p--;
|
||||
ok(!lstrcmpW(title, p), "expected %s, got %s\n",
|
||||
ok(!lstrcmpiW(title, p), "expected %s, got %s\n",
|
||||
wine_dbgstr_w(p), wine_dbgstr_w(title));
|
||||
}
|
||||
else skip("skipping Folder::get_Title test\n");
|
||||
|
@ -157,7 +157,7 @@ static void test_namespace(void)
|
|||
r = FolderItem_get_Path(item, &item_path);
|
||||
ok(r == S_OK, "FolderItem::get_Path failed: %08x\n", r);
|
||||
if (pSHGetFolderPathW)
|
||||
ok(!lstrcmpW(item_path, path), "expected %s, got %s\n",
|
||||
ok(!lstrcmpiW(item_path, path), "expected %s, got %s\n",
|
||||
wine_dbgstr_w(path), wine_dbgstr_w(item_path));
|
||||
SysFreeString(item_path);
|
||||
FolderItem_Release(item);
|
||||
|
@ -360,7 +360,7 @@ static void test_service(void)
|
|||
ok(V_BOOL(&v) == VARIANT_FALSE, "got %d\n", V_BOOL(&v));
|
||||
SysFreeString(name);
|
||||
|
||||
IShellDispatch_Release(sd);
|
||||
IShellDispatch2_Release(sd);
|
||||
}
|
||||
|
||||
START_TEST(shelldispatch)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue