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
3f0a2434
Commit
3f0a2434
authored
Apr 22, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Apr 22, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netprofm/tests: Fix a test failure on Win7/Win2008 systems.
parent
5ef54904
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
list.c
dlls/netprofm/tests/list.c
+3
-2
No files found.
dlls/netprofm/tests/list.c
View file @
3f0a2434
...
...
@@ -56,8 +56,9 @@ static void test_INetworkListManager( void )
ok
(
hr
==
S_OK
,
"got %08x
\n
"
,
hr
);
ok
(
connected
==
VARIANT_TRUE
||
connected
==
VARIANT_FALSE
,
"expected boolean value
\n
"
);
INetworkListManager_QueryInterface
(
mgr
,
&
IID_INetworkCostManager
,
(
void
**
)
&
cost_mgr
);
ok
(
hr
==
S_OK
,
"got %08x
\n
"
,
hr
);
/* INetworkCostManager is supported starting Win8 */
hr
=
INetworkListManager_QueryInterface
(
mgr
,
&
IID_INetworkCostManager
,
(
void
**
)
&
cost_mgr
);
ok
(
hr
==
S_OK
||
broken
(
hr
==
E_NOINTERFACE
),
"got %08x
\n
"
,
hr
);
if
(
hr
==
S_OK
)
{
DWORD
cost
;
...
...
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