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
37d43496
Commit
37d43496
authored
Jan 08, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jan 09, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Some tests for IMoniker::IsRunning with NULL args.
parent
df0ecdfd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
moniker.c
dlls/ole32/tests/moniker.c
+11
-0
No files found.
dlls/ole32/tests/moniker.c
View file @
37d43496
...
...
@@ -1332,6 +1332,9 @@ static void test_class_moniker(void)
ok_ole_success
(
hr
,
CreateBindCtx
);
/* IsRunning test */
hr
=
IMoniker_IsRunning
(
moniker
,
NULL
,
NULL
,
NULL
);
ok
(
hr
==
E_NOTIMPL
,
"IMoniker_IsRunning should return E_NOTIMPL, not 0x%08x
\n
"
,
hr
);
hr
=
IMoniker_IsRunning
(
moniker
,
bindctx
,
NULL
,
NULL
);
ok
(
hr
==
E_NOTIMPL
,
"IMoniker_IsRunning should return E_NOTIMPL, not 0x%08x
\n
"
,
hr
);
...
...
@@ -1461,6 +1464,10 @@ static void test_item_moniker(void)
ok_ole_success
(
hr
,
CreateBindCtx
);
/* IsRunning test */
hr
=
IMoniker_IsRunning
(
moniker
,
NULL
,
NULL
,
NULL
);
todo_wine
ok
(
hr
==
E_INVALIDARG
,
"IMoniker_IsRunning should return E_INVALIDARG, not 0x%08x
\n
"
,
hr
);
hr
=
IMoniker_IsRunning
(
moniker
,
bindctx
,
NULL
,
NULL
);
ok
(
hr
==
S_FALSE
,
"IMoniker_IsRunning should return S_FALSE, not 0x%08x
\n
"
,
hr
);
...
...
@@ -1593,6 +1600,10 @@ static void test_generic_composite_moniker(void)
ok_ole_success
(
hr
,
CreateBindCtx
);
/* IsRunning test */
hr
=
IMoniker_IsRunning
(
moniker
,
NULL
,
NULL
,
NULL
);
todo_wine
ok
(
hr
==
E_INVALIDARG
,
"IMoniker_IsRunning should return E_INVALIDARG, not 0x%08x
\n
"
,
hr
);
hr
=
IMoniker_IsRunning
(
moniker
,
bindctx
,
NULL
,
NULL
);
todo_wine
ok
(
hr
==
S_FALSE
,
"IMoniker_IsRunning should return S_FALSE, not 0x%08x
\n
"
,
hr
);
...
...
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