[SCRRUN_WINETEST] Sync with Wine Staging 1.9.23. CORE-12409

svn path=/trunk/; revision=73318
This commit is contained in:
Amine Khaldi 2016-11-17 23:52:31 +00:00
parent 1f354adf5e
commit a02e2eb1aa
2 changed files with 5 additions and 9 deletions

View file

@ -101,10 +101,8 @@ static void test_comparemode(void)
&IID_IDictionary, (void**)&dict);
ok(hr == S_OK, "got 0x%08x\n", hr);
if (0) /* crashes on native */
{
hr = IDictionary_get_CompareMode(dict, NULL);
}
if (0) /* crashes on native */
hr = IDictionary_get_CompareMode(dict, NULL);
method = 10;
hr = IDictionary_get_CompareMode(dict, &method);
@ -935,10 +933,8 @@ static void test_IEnumVARIANT(void)
&IID_IDictionary, (void**)&dict);
ok(hr == S_OK, "got 0x%08x\n", hr);
if (0) /* crashes on native */
{
hr = IDictionary__NewEnum(dict, NULL);
}
if (0) /* crashes on native */
hr = IDictionary__NewEnum(dict, NULL);
hr = IDictionary__NewEnum(dict, &enum1);
ok(hr == S_OK, "got 0x%08x\n", hr);

View file

@ -621,7 +621,7 @@ static void test_GetFile(void)
hr = IFile_get_Path(file, &str);
ok(hr == S_OK, "got 0x%08x\n", hr);
ok(!lstrcmpW(str, pathW), "got %s\n", wine_dbgstr_w(str));
ok(!lstrcmpiW(str, pathW), "got %s\n", wine_dbgstr_w(str));
SysFreeString(str);
#define FILE_ATTR_MASK (FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_HIDDEN | \