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
1c67258d
Commit
1c67258d
authored
Sep 23, 2017
by
Fabian Maurer
Committed by
Alexandre Julliard
Sep 25, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
evr/tests: Run the tests with todo_wine instead of skipping them.
Signed-off-by:
Fabian Maurer
<
dark.shadow4@web.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
119f8409
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
9 deletions
+3
-9
Makefile.in
dlls/evr/tests/Makefile.in
+1
-1
filter.c
dlls/evr/tests/filter.c
+2
-8
No files found.
dlls/evr/tests/Makefile.in
View file @
1c67258d
TESTDLL
=
evr.dll
IMPORTS
=
mfuuid strmiids
strmbase
uuid ole32 oleaut32
IMPORTS
=
mfuuid strmiids uuid ole32 oleaut32
C_SRCS
=
\
filter.c
dlls/evr/tests/filter.c
View file @
1c67258d
...
...
@@ -83,8 +83,8 @@ static void test_aggregation(const CLSID clsid_inner, const IID iid_inner, const
/* aggregation, request IUnknown */
hr
=
CoCreateInstance
(
&
clsid_inner
,
unk_outer
,
CLSCTX_INPROC_SERVER
,
&
IID_IUnknown
,
(
LPVOID
*
)
&
unk_inner
);
ok
(
hr
==
S_OK
,
"%s: run %d: Third CoCreateInstance returned %x
\n
"
,
testid
,
testrun
,
hr
);
ok
(
unk_inner
!=
NULL
,
"%s: run %d: unk_inner is NULL
\n
"
,
testid
,
testrun
);
todo_wine
ok
(
hr
==
S_OK
,
"%s: run %d: Third CoCreateInstance returned %x
\n
"
,
testid
,
testrun
,
hr
);
todo_wine
ok
(
unk_inner
!=
NULL
,
"%s: run %d: unk_inner is NULL
\n
"
,
testid
,
testrun
);
if
(
!
unk_inner
)
{
...
...
@@ -163,12 +163,6 @@ static void test_evr_filter_aggregations(void)
};
int
i
;
if
(
!
strcmp
(
winetest_platform
,
"wine"
))
{
skip
(
"Not supported yet.
\n
"
);
return
;
}
for
(
i
=
0
;
i
<
sizeof
(
iids
)
/
sizeof
(
iids
[
0
]);
i
++
)
{
test_aggregation
(
CLSID_EnhancedVideoRenderer
,
*
iids
[
i
],
"filter"
,
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