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
cde58336
Commit
cde58336
authored
Feb 08, 2023
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 14, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dpnet/tests: Fix the unexpected async handle traces.
parent
46d0da53
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
client.c
dlls/dpnet/tests/client.c
+4
-4
No files found.
dlls/dpnet/tests/client.c
View file @
cde58336
...
...
@@ -307,7 +307,7 @@ static void test_enum_hosts(void)
hr
=
IDirectPlay8Client_CancelAsyncOperation
(
client
,
async
,
0
);
ok
(
hr
==
S_OK
,
"IDirectPlay8Client_CancelAsyncOperation failed with 0x%08lx
\n
"
,
hr
);
todo_wine
ok
(
lastAsyncCode
==
DPNERR_USERCANCEL
,
"got 0x%08lx
\n
"
,
lastAsyncCode
);
todo_wine
ok
(
lastAsyncHandle
==
async
,
"got 0x%08lx
\n
"
,
async
);
todo_wine
ok
(
lastAsyncHandle
==
async
,
"got 0x%08lx
\n
"
,
lastAsyncHandle
);
hr
=
IDirectPlay8Client_Initialize
(
client2
,
NULL
,
DirectPlayMessageHandler
,
0
);
ok
(
hr
==
S_OK
,
"got %lx
\n
"
,
hr
);
...
...
@@ -322,7 +322,7 @@ static void test_enum_hosts(void)
ok
(
hr
==
S_OK
,
"IDirectPlay8Client_CancelAsyncOperation failed with 0x%08lx
\n
"
,
hr
);
flaky
todo_wine
ok
(
lastAsyncCode
==
DPNERR_USERCANCEL
,
"got 0x%08lx
\n
"
,
lastAsyncCode
);
todo_wine
ok
(
lastAsyncHandle
==
async2
,
"got 0x%08lx
\n
"
,
async2
);
todo_wine
ok
(
lastAsyncHandle
==
async2
,
"got 0x%08lx
\n
"
,
lastAsyncHandle
);
IDirectPlay8Address_Release
(
local
);
IDirectPlay8Address_Release
(
host
);
...
...
@@ -745,7 +745,7 @@ static void test_enum_hosts_peer(void)
hr
=
IDirectPlay8Peer_CancelAsyncOperation
(
peer
,
async
,
0
);
todo_wine
ok
(
hr
==
S_OK
,
"IDirectPlay8Peer_CancelAsyncOperation failed with 0x%08lx
\n
"
,
hr
);
todo_wine
ok
(
lastAsyncCode
==
DPNERR_USERCANCEL
,
"got 0x%08lx
\n
"
,
lastAsyncCode
);
todo_wine
ok
(
lastAsyncHandle
==
async
,
"got 0x%08lx
\n
"
,
async
);
todo_wine
ok
(
lastAsyncHandle
==
async
,
"got 0x%08lx
\n
"
,
lastAsyncHandle
);
lastAsyncCode
=
E_FAIL
;
lastAsyncHandle
=
0xdeadbeef
;
...
...
@@ -754,7 +754,7 @@ static void test_enum_hosts_peer(void)
flaky
todo_wine
ok
(
lastAsyncCode
==
DPNERR_USERCANCEL
,
"got 0x%08lx
\n
"
,
lastAsyncCode
);
flaky
todo_wine
ok
(
lastAsyncHandle
==
async2
,
"got 0x%08lx
\n
"
,
async2
);
todo_wine
ok
(
lastAsyncHandle
==
async2
,
"got 0x%08lx
\n
"
,
lastAsyncHandle
);
IDirectPlay8Peer_Release
(
peer2
);
IDirectPlay8Address_Release
(
local
);
...
...
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