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
b9c06ad3
Commit
b9c06ad3
authored
Jun 17, 2011
by
Huw Davies
Committed by
Alexandre Julliard
Jun 17, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32/tests: Add broken behaviour on nt4 sp1-5.
parent
cf5dae18
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
dc.c
dlls/gdi32/tests/dc.c
+5
-4
No files found.
dlls/gdi32/tests/dc.c
View file @
b9c06ad3
...
...
@@ -497,7 +497,7 @@ todo_wine
static
void
test_boundsrect_invalid
(
void
)
{
HDC
hdc
;
RECT
rect
,
expect
;
RECT
rect
,
expect
,
set_rect
;
UINT
ret
;
hdc
=
GetDC
(
NULL
);
...
...
@@ -518,8 +518,8 @@ static void test_boundsrect_invalid(void)
else
{
/* Test parameter handling order. */
SetRect
(
&
rect
,
0
,
0
,
5
0
,
50
);
ret
=
SetBoundsRect
(
hdc
,
&
rect
,
DCB_SET
);
SetRect
(
&
set_rect
,
10
,
20
,
4
0
,
50
);
ret
=
SetBoundsRect
(
hdc
,
&
set_
rect
,
DCB_SET
);
ok
(
ret
&
DCB_RESET
,
"Expected return flag DCB_RESET to be set, got %u
\n
"
,
ret
);
...
...
@@ -533,7 +533,8 @@ static void test_boundsrect_invalid(void)
ok
(
ret
==
DCB_RESET
,
"Expected GetBoundsRect to return DCB_RESET, got %u
\n
"
,
ret
);
SetRect
(
&
expect
,
0
,
0
,
0
,
0
);
ok
(
EqualRect
(
&
rect
,
&
expect
),
ok
(
EqualRect
(
&
rect
,
&
expect
)
||
broken
(
EqualRect
(
&
rect
,
&
set_rect
)),
/* nt4 sp1-5 */
"Expected output rectangle (0,0)-(0,0), got (%d,%d)-(%d,%d)
\n
"
,
rect
.
left
,
rect
.
top
,
rect
.
right
,
rect
.
bottom
);
}
...
...
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