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
9e37dd32
Commit
9e37dd32
authored
Jun 06, 2017
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jun 06, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dplayx/tests: Remove some wine_todo.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4f4b3be5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
dplayx.c
dlls/dplayx/tests/dplayx.c
+5
-5
No files found.
dlls/dplayx/tests/dplayx.c
View file @
9e37dd32
...
...
@@ -1262,7 +1262,7 @@ static void test_Open(void)
/* Regular operation */
hr
=
IDirectPlayX_Open
(
pDP_server
,
&
dpsd_server
,
DPOPEN_CREATE
);
checkHR
(
DP_OK
,
hr
);
todo_wine
checkHR
(
DP_OK
,
hr
);
/* Opening twice */
hr
=
IDirectPlayX_Open
(
pDP_server
,
&
dpsd_server
,
DPOPEN_CREATE
);
...
...
@@ -1288,15 +1288,15 @@ static void test_Open(void)
/* - Checking how strict dplay is with sizes */
dpsd
.
dwSize
=
0
;
hr
=
IDirectPlayX_Open
(
pDP
,
&
dpsd
,
DPOPEN_JOIN
);
todo_wine
checkHR
(
DPERR_INVALIDPARAMS
,
hr
);
checkHR
(
DPERR_INVALIDPARAMS
,
hr
);
dpsd
.
dwSize
=
sizeof
(
DPSESSIONDESC2
)
-
1
;
hr
=
IDirectPlayX_Open
(
pDP
,
&
dpsd
,
DPOPEN_JOIN
);
todo_wine
checkHR
(
DPERR_INVALIDPARAMS
,
hr
);
checkHR
(
DPERR_INVALIDPARAMS
,
hr
);
dpsd
.
dwSize
=
sizeof
(
DPSESSIONDESC2
)
+
1
;
hr
=
IDirectPlayX_Open
(
pDP
,
&
dpsd
,
DPOPEN_JOIN
);
todo_wine
checkHR
(
DPERR_INVALIDPARAMS
,
hr
);
checkHR
(
DPERR_INVALIDPARAMS
,
hr
);
dpsd
.
dwSize
=
sizeof
(
DPSESSIONDESC2
);
hr
=
IDirectPlayX_Open
(
pDP
,
&
dpsd
,
DPOPEN_JOIN
);
...
...
@@ -1331,7 +1331,7 @@ static void test_Open(void)
dpsd_server
.
dwSize
=
0
;
hr
=
IDirectPlayX_Open
(
pDP_server
,
&
dpsd_server
,
DPOPEN_CREATE
);
todo_wine
checkHR
(
DPERR_INVALIDPARAMS
,
hr
);
checkHR
(
DPERR_INVALIDPARAMS
,
hr
);
dpsd_server
.
dwSize
=
sizeof
(
DPSESSIONDESC2
);
...
...
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