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
87f1933d
Commit
87f1933d
authored
Apr 06, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mmdevapi/tests: Remove some todos that succeed now.
parent
24b37eac
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
propstore.c
dlls/mmdevapi/tests/propstore.c
+3
-3
No files found.
dlls/mmdevapi/tests/propstore.c
View file @
87f1933d
...
...
@@ -74,7 +74,7 @@ START_TEST(propstore)
}
store
=
NULL
;
hr
=
IMMDevice_OpenPropertyStore
(
dev
,
3
,
&
store
);
todo_wine
ok
(
hr
==
E_INVALIDARG
,
"Wrong hr returned: %08x
\n
"
,
hr
);
ok
(
hr
==
E_INVALIDARG
,
"Wrong hr returned: %08x
\n
"
,
hr
);
if
(
hr
!=
S_OK
)
/* It seems on windows returning with E_INVALIDARG doesn't
* set store to NULL, so just don't set store to non-null
...
...
@@ -84,11 +84,11 @@ START_TEST(propstore)
else
if
(
store
)
IPropertyStore_Release
(
store
);
hr
=
IMMDevice_OpenPropertyStore
(
dev
,
STGM_READ
,
NULL
);
todo_wine
ok
(
hr
==
E_POINTER
,
"Wrong hr returned: %08x
\n
"
,
hr
);
ok
(
hr
==
E_POINTER
,
"Wrong hr returned: %08x
\n
"
,
hr
);
store
=
NULL
;
hr
=
IMMDevice_OpenPropertyStore
(
dev
,
STGM_READ
,
&
store
);
todo_wine
ok
(
hr
==
S_OK
,
"Opening valid store returned %08x
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"Opening valid store returned %08x
\n
"
,
hr
);
if
(
store
)
{
test_propertystore
(
store
);
...
...
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