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
ff352171
Commit
ff352171
authored
Oct 29, 2013
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 29, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz/tests: Enable compilation with -D__WINESRC__.
parent
9d03aa32
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
Makefile.in
dlls/quartz/tests/Makefile.in
+0
-1
filtergraph.c
dlls/quartz/tests/filtergraph.c
+5
-5
No files found.
dlls/quartz/tests/Makefile.in
View file @
ff352171
TESTDLL
=
quartz.dll
IMPORTS
=
oleaut32 ole32 advapi32
EXTRADEFS
=
-U__WINESRC__
-DWINE_STRICT_PROTOTYPES
-DWINE_NO_NAMELESS_EXTENSION
-DWIDL_C_INLINE_WRAPPERS
C_SRCS
=
\
avisplitter.c
\
...
...
dlls/quartz/tests/filtergraph.c
View file @
ff352171
...
...
@@ -1643,7 +1643,7 @@ static void test_render_filter_priority(void)
ok
(
hr
==
E_POINTER
,
"IFilterGraph2_Disconnect failed. Expected E_POINTER, received %08x
\n
"
,
hr
);
get_connected_filter_name
(
ptestfilter
,
ConnectedFilterName2
);
ok
(
l
strcmp
(
ConnectedFilterName1
,
ConnectedFilterName2
),
ok
(
strcmp
(
ConnectedFilterName1
,
ConnectedFilterName2
),
"expected connected filters to be different but got %s both times
\n
"
,
ConnectedFilterName1
);
IFilterGraph2_Release
(
pgraph2
);
...
...
@@ -1699,7 +1699,7 @@ static void test_render_filter_priority(void)
ok
(
hr
==
S_OK
,
"IFilterGraph2_Render failed with %08x
\n
"
,
hr
);
get_connected_filter_name
(
ptestfilter
,
ConnectedFilterName1
);
ok
(
!
lstrcmp
(
ConnectedFilterName1
,
"TestfilterInstance3"
)
||
!
l
strcmp
(
ConnectedFilterName1
,
"TestfilterInstance2"
),
ok
(
!
strcmp
(
ConnectedFilterName1
,
"TestfilterInstance3"
)
||
!
strcmp
(
ConnectedFilterName1
,
"TestfilterInstance2"
),
"unexpected connected filter: %s
\n
"
,
ConnectedFilterName1
);
IFilterGraph2_Release
(
pgraph2
);
...
...
@@ -1751,9 +1751,9 @@ static void test_render_filter_priority(void)
ok
(
hr
==
S_OK
,
"IFilterGraph2_Render failed with %08x
\n
"
,
hr
);
get_connected_filter_name
(
ptestfilter
,
ConnectedFilterName2
);
ok
(
!
lstrcmp
(
ConnectedFilterName2
,
"TestfilterInstance3"
)
||
!
l
strcmp
(
ConnectedFilterName2
,
"TestfilterInstance2"
),
ok
(
!
strcmp
(
ConnectedFilterName2
,
"TestfilterInstance3"
)
||
!
strcmp
(
ConnectedFilterName2
,
"TestfilterInstance2"
),
"unexpected connected filter: %s
\n
"
,
ConnectedFilterName2
);
ok
(
l
strcmp
(
ConnectedFilterName1
,
ConnectedFilterName2
),
ok
(
strcmp
(
ConnectedFilterName1
,
ConnectedFilterName2
),
"expected connected filters to be different but got %s both times
\n
"
,
ConnectedFilterName1
);
IFilterGraph2_Release
(
pgraph2
);
...
...
@@ -1847,7 +1847,7 @@ static void test_render_filter_priority(void)
ok
(
hr
==
S_OK
,
"IFilterGraph2_Render failed with %08x
\n
"
,
hr
);
get_connected_filter_name
(
ptestfilter
,
ConnectedFilterName1
);
ok
(
!
l
strcmp
(
ConnectedFilterName1
,
"TestfilterInstance3"
),
ok
(
!
strcmp
(
ConnectedFilterName1
,
"TestfilterInstance3"
),
"unexpected connected filter: %s
\n
"
,
ConnectedFilterName1
);
}
...
...
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