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
3e3caf1e
Commit
3e3caf1e
authored
Sep 13, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32/tests: Mark some tests that fail without Vulkan as todo.
parent
12bf088a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
driver.c
dlls/gdi32/tests/driver.c
+2
-0
No files found.
dlls/gdi32/tests/driver.c
View file @
3e3caf1e
...
...
@@ -937,6 +937,7 @@ static void test_D3DKMTQueryVideoMemoryInfo(void)
query_memory_info
.
PhysicalAdapterIndex
=
0
;
query_memory_info
.
MemorySegmentGroup
=
groups
[
i
];
status
=
pD3DKMTQueryVideoMemoryInfo
(
&
query_memory_info
);
todo_wine_if
(
status
==
STATUS_INVALID_PARAMETER
)
/* fails on Wine without a Vulkan adapter */
ok
(
status
==
STATUS_SUCCESS
,
"Got unexpected return code %#lx.
\n
"
,
status
);
ok
(
query_memory_info
.
Budget
>=
query_memory_info
.
AvailableForReservation
,
"Unexpected budget %I64u and reservation %I64u.
\n
"
,
query_memory_info
.
Budget
,
...
...
@@ -952,6 +953,7 @@ static void test_D3DKMTQueryVideoMemoryInfo(void)
/* Query using the current process handle */
query_memory_info
.
hProcess
=
GetCurrentProcess
();
status
=
pD3DKMTQueryVideoMemoryInfo
(
&
query_memory_info
);
todo_wine_if
(
status
==
STATUS_INVALID_PARAMETER
)
/* fails on Wine without a Vulkan adapter */
ok
(
status
==
STATUS_SUCCESS
,
"Got unexpected return code %#lx.
\n
"
,
status
);
/* Query using a process handle without PROCESS_QUERY_INFORMATION privilege */
...
...
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