Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
5a5beba6
Commit
5a5beba6
authored
Jan 24, 2019
by
Matteo Bruni
Committed by
Alexandre Julliard
Jan 24, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9/tests: Fix a couple of ok() messages.
Signed-off-by:
Matteo Bruni
<
mbruni@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
64b6bb4d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
effect.c
dlls/d3dx9_36/tests/effect.c
+2
-2
No files found.
dlls/d3dx9_36/tests/effect.c
View file @
5a5beba6
...
...
@@ -343,7 +343,7 @@ static void test_create_effect_and_pool(IDirect3DDevice9 *device)
hr
=
pool
->
lpVtbl
->
QueryInterface
(
pool
,
&
IID_ID3DXEffectPool
,
(
void
**
)
&
pool2
);
ok
(
hr
==
D3D_OK
,
"Got result %x, expected 0 (D3D_OK)
\n
"
,
hr
);
ok
(
pool
==
pool2
,
"
Release failed, got %p, expected %p
\n
"
,
pool2
,
pool
);
ok
(
pool
==
pool2
,
"
Got effect pool %p, expected %p.
\n
"
,
pool2
,
pool
);
count
=
pool2
->
lpVtbl
->
Release
(
pool2
);
ok
(
count
==
1
,
"Release failed, got %u, expected 1
\n
"
,
count
);
...
...
@@ -359,7 +359,7 @@ static void test_create_effect_and_pool(IDirect3DDevice9 *device)
hr
=
effect
->
lpVtbl
->
GetPool
(
effect
,
&
pool
);
ok
(
hr
==
D3D_OK
,
"GetPool failed, got %x, expected 0 (D3D_OK)
\n
"
,
hr
);
ok
(
pool
==
pool2
,
"G
etPool failed, got %p, expected %p
\n
"
,
pool2
,
pool
);
ok
(
pool
==
pool2
,
"G
ot effect pool %p, expected %p.
\n
"
,
pool2
,
pool
);
count
=
pool2
->
lpVtbl
->
Release
(
pool2
);
ok
(
count
==
2
,
"Release failed, got %u, expected 2
\n
"
,
count
);
...
...
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