mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
[SCRRUN_WINETEST] Sync with Wine Staging 1.7.37. CORE-9246
svn path=/trunk/; revision=67395
This commit is contained in:
parent
166125e233
commit
4c29c0e668
1 changed files with 3 additions and 1 deletions
|
@ -892,7 +892,7 @@ static void test_FolderCollection(void)
|
|||
|
||||
hr = IFolder_get_Path(folder, &str);
|
||||
ok(hr == S_OK, "got 0x%08x\n", hr);
|
||||
ok(!lstrcmpW(buffW, str), "got %s, expected %s\n", wine_dbgstr_w(str), wine_dbgstr_w(buffW));
|
||||
ok(!lstrcmpiW(buffW, str), "got %s, expected %s\n", wine_dbgstr_w(str), wine_dbgstr_w(buffW));
|
||||
SysFreeString(str);
|
||||
|
||||
lstrcpyW(pathW, buffW);
|
||||
|
@ -1577,6 +1577,7 @@ todo_wine
|
|||
ok(hr == S_OK, "got 0x%08x\n", hr);
|
||||
str = SysAllocString(aW);
|
||||
hr = ITextStream_Write(stream, str);
|
||||
ok(hr == S_OK, "got 0x%08x\n", hr);
|
||||
SysFreeString(str);
|
||||
ITextStream_Release(stream);
|
||||
|
||||
|
@ -1729,6 +1730,7 @@ todo_wine
|
|||
ok(hr == S_OK, "got 0x%08x\n", hr);
|
||||
str = SysAllocString(aW);
|
||||
hr = ITextStream_Write(stream, str);
|
||||
ok(hr == S_OK, "got 0x%08x\n", hr);
|
||||
SysFreeString(str);
|
||||
ITextStream_Release(stream);
|
||||
|
||||
|
|
Loading…
Reference in a new issue