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
6418a489
Commit
6418a489
authored
May 04, 2015
by
Matteo Bruni
Committed by
Alexandre Julliard
May 05, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw/tests: Accept broken testbot result for test_clear_rect_count().
parent
2bab1f72
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
4 deletions
+7
-4
ddraw1.c
dlls/ddraw/tests/ddraw1.c
+2
-1
ddraw2.c
dlls/ddraw/tests/ddraw2.c
+2
-1
ddraw4.c
dlls/ddraw/tests/ddraw4.c
+2
-1
ddraw7.c
dlls/ddraw/tests/ddraw7.c
+1
-1
No files found.
dlls/ddraw/tests/ddraw1.c
View file @
6418a489
...
...
@@ -3212,7 +3212,8 @@ static void test_clear_rect_count(void)
ok
(
SUCCEEDED
(
hr
),
"Failed to clear viewport, hr %#x.
\n
"
,
hr
);
color
=
get_surface_color
(
rt
,
320
,
240
);
ok
(
compare_color
(
color
,
0x00ffffff
,
1
),
"Got unexpected color 0x%08x.
\n
"
,
color
);
ok
(
compare_color
(
color
,
0x00ffffff
,
1
)
||
broken
(
compare_color
(
color
,
0x000000ff
,
1
)),
"Got unexpected color 0x%08x.
\n
"
,
color
);
IDirectDrawSurface_Release
(
rt
);
destroy_viewport
(
device
,
viewport
);
...
...
dlls/ddraw/tests/ddraw2.c
View file @
6418a489
...
...
@@ -3457,7 +3457,8 @@ static void test_clear_rect_count(void)
ok
(
SUCCEEDED
(
hr
),
"Failed to clear viewport, hr %#x.
\n
"
,
hr
);
color
=
get_surface_color
(
rt
,
320
,
240
);
ok
(
compare_color
(
color
,
0x00ffffff
,
1
),
"Got unexpected color 0x%08x.
\n
"
,
color
);
ok
(
compare_color
(
color
,
0x00ffffff
,
1
)
||
broken
(
compare_color
(
color
,
0x000000ff
,
1
)),
"Got unexpected color 0x%08x.
\n
"
,
color
);
IDirectDrawSurface_Release
(
rt
);
destroy_viewport
(
device
,
viewport
);
...
...
dlls/ddraw/tests/ddraw4.c
View file @
6418a489
...
...
@@ -4321,7 +4321,8 @@ static void test_clear_rect_count(void)
ok
(
SUCCEEDED
(
hr
),
"Failed to clear the viewport, hr %#x.
\n
"
,
hr
);
color
=
get_surface_color
(
rt
,
320
,
240
);
ok
(
compare_color
(
color
,
0x00ffffff
,
1
),
"Got unexpected color 0x%08x.
\n
"
,
color
);
ok
(
compare_color
(
color
,
0x00ffffff
,
1
)
||
broken
(
compare_color
(
color
,
0x000000ff
,
1
)),
"Got unexpected color 0x%08x.
\n
"
,
color
);
IDirect3DViewport3_Release
(
viewport
);
IDirectDrawSurface4_Release
(
rt
);
...
...
dlls/ddraw/tests/ddraw7.c
View file @
6418a489
...
...
@@ -3942,7 +3942,7 @@ static void test_clear_rect_count(void)
ok
(
SUCCEEDED
(
hr
),
"Failed to clear render target, hr %#x.
\n
"
,
hr
);
color
=
get_surface_color
(
rt
,
320
,
240
);
ok
(
compare_color
(
color
,
0x00ffffff
,
1
),
ok
(
compare_color
(
color
,
0x00ffffff
,
1
)
||
broken
(
compare_color
(
color
,
0x00ff0000
,
1
))
,
"Clear with count = 0, rect != NULL has color %#08x.
\n
"
,
color
);
hr
=
IDirect3DDevice7_Clear
(
device
,
0
,
NULL
,
D3DCLEAR_TARGET
,
0x00ffffff
,
1
.
0
f
,
0
);
...
...
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