mirror of
https://github.com/reactos/reactos.git
synced 2025-06-25 02:59:42 +00:00
[ATL100_WINETEST] Sync with Wine Staging 4.0. CORE-15682
This commit is contained in:
parent
f9fd4bbc7c
commit
0d35c5159b
1 changed files with 6 additions and 4 deletions
|
@ -304,8 +304,8 @@ static void test_typelib(void)
|
||||||
FreeLibrary(inst);
|
FreeLibrary(inst);
|
||||||
|
|
||||||
len = SysStringLen(path);
|
len = SysStringLen(path);
|
||||||
ok(len > sizeof(scrrun_dll_suffixW)/sizeof(WCHAR)
|
ok(len > ARRAY_SIZE(scrrun_dll_suffixW)
|
||||||
&& lstrcmpiW(path+len-sizeof(scrrun_dll_suffixW)/sizeof(WCHAR), scrrun_dll_suffixW),
|
&& lstrcmpiW(path+len-ARRAY_SIZE(scrrun_dll_suffixW), scrrun_dll_suffixW),
|
||||||
"unexpected path %s\n", wine_dbgstr_w(path));
|
"unexpected path %s\n", wine_dbgstr_w(path));
|
||||||
SysFreeString(path);
|
SysFreeString(path);
|
||||||
ok(typelib != NULL, "typelib == NULL\n");
|
ok(typelib != NULL, "typelib == NULL\n");
|
||||||
|
@ -320,8 +320,8 @@ static void test_typelib(void)
|
||||||
FreeLibrary(inst);
|
FreeLibrary(inst);
|
||||||
|
|
||||||
len = SysStringLen(path);
|
len = SysStringLen(path);
|
||||||
ok(len > sizeof(mshtml_tlb_suffixW)/sizeof(WCHAR)
|
ok(len > ARRAY_SIZE(mshtml_tlb_suffixW)
|
||||||
&& lstrcmpiW(path+len-sizeof(mshtml_tlb_suffixW)/sizeof(WCHAR), mshtml_tlb_suffixW),
|
&& lstrcmpiW(path+len-ARRAY_SIZE(mshtml_tlb_suffixW), mshtml_tlb_suffixW),
|
||||||
"unexpected path %s\n", wine_dbgstr_w(path));
|
"unexpected path %s\n", wine_dbgstr_w(path));
|
||||||
SysFreeString(path);
|
SysFreeString(path);
|
||||||
ok(typelib != NULL, "typelib == NULL\n");
|
ok(typelib != NULL, "typelib == NULL\n");
|
||||||
|
@ -964,6 +964,8 @@ static void test_AtlAxCreateControl(void)
|
||||||
ok(hr == S_OK, "got 0x%08x\n", hr);
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
||||||
ok(container != NULL, "returned %p!\n", container);
|
ok(container != NULL, "returned %p!\n", container);
|
||||||
ok(control != NULL, "returned %p\n", control);
|
ok(control != NULL, "returned %p\n", control);
|
||||||
|
IUnknown_Release(container);
|
||||||
|
IUnknown_Release(control);
|
||||||
DestroyWindow(hwnd);
|
DestroyWindow(hwnd);
|
||||||
|
|
||||||
container = NULL;
|
container = NULL;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue