Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
16d161bc
Commit
16d161bc
authored
Jan 13, 2010
by
Paul Vriens
Committed by
Alexandre Julliard
Jan 14, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxdiagn/tests: Fix some test failures on a clean W2K3.
parent
ff4047a9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
provider.c
dlls/dxdiagn/tests/provider.c
+6
-2
No files found.
dlls/dxdiagn/tests/provider.c
View file @
16d161bc
...
...
@@ -32,7 +32,9 @@ static void test_Initialize(void)
hr
=
CoCreateInstance
(
&
CLSID_DxDiagProvider
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_IDxDiagProvider
,
(
LPVOID
*
)
&
pddp
);
ok
(
hr
==
S_OK
,
"Creating a IDxDiagProvider instance failed with %x
\n
"
,
hr
);
ok
(
hr
==
S_OK
||
broken
(
hr
==
REGDB_E_CLASSNOTREG
),
/* Clean W2K3 */
"Creating a IDxDiagProvider instance failed with %x
\n
"
,
hr
);
if
(
FAILED
(
hr
))
{
skip
(
"Failed to create a IDxDiagProvider instance
\n
"
);
...
...
@@ -97,7 +99,9 @@ static void test_GetRootContainer(void)
hr
=
CoCreateInstance
(
&
CLSID_DxDiagProvider
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_IDxDiagProvider
,
(
LPVOID
*
)
&
pddp
);
ok
(
hr
==
S_OK
,
"Creating a IDxDiagProvider instance failed with %x
\n
"
,
hr
);
ok
(
hr
==
S_OK
||
broken
(
hr
==
REGDB_E_CLASSNOTREG
),
/* Clean W2K3 */
"Creating a IDxDiagProvider instance failed with %x
\n
"
,
hr
);
if
(
FAILED
(
hr
))
{
skip
(
"Failed to create a IDxDiagProvider instance
\n
"
);
...
...
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