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
80d8275f
Commit
80d8275f
authored
Sep 28, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 28, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
browseui/tests: Skip some tests if IEnumACString is not supported.
parent
f00aafae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
autocomplete.c
dlls/browseui/tests/autocomplete.c
+10
-3
No files found.
dlls/browseui/tests/autocomplete.c
View file @
80d8275f
...
...
@@ -238,6 +238,7 @@ static void test_ACLMulti(void)
WCHAR
exp
[]
=
{
'A'
,
'B'
,
'C'
,
0
};
IEnumString
*
obj
;
IEnumACString
*
unk
;
HRESULT
hr
;
TestACL
*
acl1
,
*
acl2
;
IACList
*
acl
;
IObjMgr
*
mgr
;
...
...
@@ -252,9 +253,15 @@ static void test_ACLMulti(void)
"Unexpected interface IACList2 in ACLMulti
\n
"
);
stop_on_error
(
obj
->
lpVtbl
->
QueryInterface
(
obj
,
&
IID_IObjMgr
,
(
LPVOID
*
)
&
mgr
));
todo_wine
ole_ok
(
obj
->
lpVtbl
->
QueryInterface
(
obj
,
&
IID_IEnumACString
,
(
LPVOID
*
)
&
unk
));
if
(
unk
!=
NULL
)
unk
->
lpVtbl
->
Release
(
unk
);
hr
=
obj
->
lpVtbl
->
QueryInterface
(
obj
,
&
IID_IEnumACString
,
(
LPVOID
*
)
&
unk
);
if
(
hr
==
E_NOINTERFACE
)
todo_wine
win_skip
(
"IEnumACString is not supported, skipping tests
\n
"
);
else
{
ok
(
hr
==
S_OK
,
"QueryInterface(IID_IEnumACString) failed: %x
\n
"
,
hr
);
if
(
unk
!=
NULL
)
unk
->
lpVtbl
->
Release
(
unk
);
}
ok
(
obj
->
lpVtbl
->
Next
(
obj
,
1
,
(
LPOLESTR
*
)
&
tmp
,
&
i
)
==
S_FALSE
,
"Unexpected return from Next
\n
"
);
ok
(
i
==
0
,
"Unexpected fetched value %d
\n
"
,
i
);
...
...
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