Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
b21e50c0
Commit
b21e50c0
authored
Nov 01, 2019
by
Sven Baars
Committed by
Alexandre Julliard
Nov 01, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32/tests: Fix some test failures on Windows XP.
Signed-off-by:
Sven Baars
<
sven.wine@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
eefc2a9c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
compobj.c
dlls/ole32/tests/compobj.c
+2
-2
No files found.
dlls/ole32/tests/compobj.c
View file @
b21e50c0
...
...
@@ -757,7 +757,7 @@ static void test_CoGetClassObject(void)
IUnknown_Release
(
pUnk
);
hr
=
CoGetClassObject
(
&
IID_Testiface7
,
CLSCTX_INPROC_SERVER
,
NULL
,
&
IID_IUnknown
,
(
void
**
)
&
pUnk
);
ok
(
hr
==
0x80001235
,
"Unexpected hr %#x.
\n
"
,
hr
);
ok
(
hr
==
0x80001235
||
broken
(
hr
==
HRESULT_FROM_WIN32
(
ERROR_MOD_NOT_FOUND
))
/* winxp */
,
"Unexpected hr %#x.
\n
"
,
hr
);
hr
=
CoGetClassObject
(
&
IID_Testiface8
,
CLSCTX_INPROC_SERVER
,
NULL
,
&
IID_IUnknown
,
(
void
**
)
&
pUnk
);
ok
(
hr
==
REGDB_E_CLASSNOTREG
,
"Unexpected hr %#x.
\n
"
,
hr
);
...
...
@@ -1573,7 +1573,7 @@ static void test_CoRegisterClassObject(void)
if
((
handle
=
activate_context
(
actctx_manifest
,
&
ctxcookie
)))
{
hr
=
CoGetClassObject
(
&
CLSID_WineOOPTest
,
CLSCTX_INPROC_SERVER
,
NULL
,
&
IID_IClassFactory
,
(
void
**
)
&
pcf
);
ok
(
hr
==
0x80001234
,
"Unexpected hr %#x.
\n
"
,
hr
);
ok
(
hr
==
0x80001234
||
broken
(
hr
==
HRESULT_FROM_WIN32
(
ERROR_MOD_NOT_FOUND
))
/* winxp */
,
"Unexpected hr %#x.
\n
"
,
hr
);
deactivate_context
(
handle
,
ctxcookie
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment